Visual C++: No default constructor(Visual C++:没有默认构造函数)
问题描述
我已经看过其他几个问这个问题的问题,但我的案例似乎比我经历过的要简单得多,所以我会问我的案例.
I've looked at a couple other questions asking this, but mine seems to be a lot simpler of a case then the ones I've been through, so I'll ask my case for this.
Learn.h:
#ifndef LEARN_H
#define LEARN_H
class Learn
{
public:
Learn(int x);
~Learn();
private:
const int favourite;
};
#endif
Learn.cpp:
#include "Learn.h"
#include <iostream>
using namespace std;
Learn::Learn(int x=0): favourite(x)
{
cout << "Constructor" << endl;
}
Learn::~Learn()
{
cout << "Destructor" << endl;
}
源.cpp:
#include <iostream>
#include "Learn.h"
using namespace std;
int main() {
cout << "What's your favourite integer? ";
int x; cin >> x;
Learn(0);
system("PAUSE");
}
上面的代码本身并没有输出任何错误.
The above code in itself does not output any error.
但是,在将 Learn(0)
替换为 Learn(x)
后,我确实遇到了一些错误.它们是:
However, I do get a couple errors after I replace Learn(0)
with Learn(x)
. They are:
- 错误 E0291:
不存在类 Learn 的默认构造函数
- 错误 C2371:
'x' : 重新定义;不同的基本类型
- 错误 C2512:
'Learn' : 没有合适的默认构造函数可用
有什么原因吗?我真的想在其中实际输入整数变量 x
而不是 0
.我知道这只是练习,我是新手,但实际上,我对为什么这不起作用感到有些困惑.
Any reason for this? I really want to actually input the integer variable x
inside it rather than the 0
. I know this is only practice and I'm new to this, but really, I'm a little confused as to why this doesn't work.
任何帮助将不胜感激,谢谢.
Any help would be appreciated, thanks.
推荐答案
解析问题:
Learn(x);
被解析为
Learn x;
你应该使用
Learn{x};
建立你的临时或
Learn some_name{x};
//or
Learn some_name(x);
如果你想要一个实际的对象.
if you want an actual object.
这篇关于Visual C++:没有默认构造函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Visual C++:没有默认构造函数
- 使用/clr 时出现 LNK2022 错误 2022-01-01
- 如何对自定义类的向量使用std::find()? 2022-11-07
- 近似搜索的工作原理 2021-01-01
- STL 中有 dereference_iterator 吗? 2022-01-01
- 一起使用 MPI 和 OpenCV 时出现分段错误 2022-01-01
- 与 int by int 相比,为什么执行 float by float 矩阵乘法更快? 2021-01-01
- 从python回调到c++的选项 2022-11-16
- C++ 协变模板 2021-01-01
- Stroustrup 的 Simple_window.h 2022-01-01
- 静态初始化顺序失败 2022-01-01