为什么 IntelliSense 显示我没有编写的构造函数?

发布于 2024-11-15 20:40:59 字数 196 浏览 2 评论 0原文

IDE给出的建议是什么意思? (使用 VS 2010)

在此处输入图像描述

没有采用建议参数的 baseClass_2 构造函数(const baseClass_2 &)。那么,为什么会出现这种情况呢?

What does it mean by the suggestion give by the IDE? (using VS 2010)

enter image description here

There is no constructor of baseClass_2 which takes the suggested parameter(const baseClass_2 &). So, why this is showing up?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎言笑 2024-11-22 20:40:59

隐式定义的复制构造函数。

有一些特殊的成员函数,当您未显式声明/定义它们时,默认会定义它们:

  • 默认构造函数 复制
  • 构造函数 析
  • 构函数

请注意,当您提供除复制构造函数之外的任何其他构造函数时,默认构造函数将不会被定义。

Implicitly defined copy constructor.

There are special member functions which get defined by default when you not explicitly declare / define them:

  • Default constructor
  • Copy constructor
  • Destructor

Note that the default constructor will not get defined when you provide any other constructor besides the copy constructor.

橘寄 2024-11-22 20:40:59

构造函数是复制构造函数,它是隐式声明和定义的。

The constructor is the copy constructor and it is declared and defined implicitly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文