类构造函数不起作用?

发布于 2024-12-07 21:19:41 字数 500 浏览 0 评论 0原文

代码:

在类头文件中:

 class Coconuts
{
public:
    Coconuts constructor();

};

在类 .cpp 文件中:

     #include "Coconuts.h"
     #include <iostream>
     #include <string>
     using namespace std;


Coconuts::constructor()
{
    cout << "\nYay coconuts are initialized";
};

在 main() 中:

 Coconuts Object1;

我的程序运行时没有任何错误,但构造函数未初始化并且消息 不显示。有建议吗?

Code:

In class header file:

 class Coconuts
{
public:
    Coconuts constructor();

};

In class .cpp file:

     #include "Coconuts.h"
     #include <iostream>
     #include <string>
     using namespace std;


Coconuts::constructor()
{
    cout << "\nYay coconuts are initialized";
};

In main():

 Coconuts Object1;

My program runs without any erros whatsoever, but the constructor isn't initialized and the message
is not displayed. Suggestions, anyone?

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

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

发布评论

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

评论(2

醉态萌生 2024-12-14 21:19:41

构造函数不是名为constructor 的函数。构造函数的“名称”是类本身的名称。请注意,构造函数不是普通函数,不能通过名称直接引用,这就是为什么我将“名称”放在引号中。

您的代码应如下所示:

//.h
class Coconuts
{
public:
    Coconuts();
};

//.cpp
Coconuts::Coconuts()
{
    cout << "\nYay coconuts are initialized";
};

Constructors are not functions named constructor. The "name" of a constructor is the name of the class itself. Note that constructors are not normal functions and cannot be directly referenced by name, which is why I put "name" in quotation marks.

Your code should be as follows:

//.h
class Coconuts
{
public:
    Coconuts();
};

//.cpp
Coconuts::Coconuts()
{
    cout << "\nYay coconuts are initialized";
};
素罗衫 2024-12-14 21:19:41

这不是构造函数,构造函数只是类的名称:-

 class Coconuts 
 { 
 public:     
    Coconuts();  
 };

并且

Coconuts::Coconuts()  
{      
    cout << "\nYay coconuts are initialized";  
};

That's not a constructor, the constuctor is just the name of the class :-

 class Coconuts 
 { 
 public:     
    Coconuts();  
 };

and

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