我正在学习c ++,我创建了一个程序来使用类来显示输入数字。
我使用构造函数初始化x
和y
。该程序工作正常,但我想使用全局范围来显示变量而不是函数。
评论的行是我希望它做的但它给了我一个错误,我尝试使用dublu::x
和dublu::y
,但它说常量需要static const
...这是有效的但这不是我的解决方案。有什么想法吗?
#include <iostream>
using namespace std;
class dublu{
public:
int x,y;
dublu(){cin>>x>>y;};
dublu(int,int);
void show(void);
};
dublu::dublu(int x, int y){
dublu::x = x;
dublu::y = y;
}
void dublu::show(void){
cout << x<<","<< y<<endl;
}
namespace second{
double x = 3.1416;
double y = 2.7183;
}
using namespace second;
int main () {
dublu test,test2(6,8);
test.show();
test2.show();
/*cout << test::x << '\n';
cout << test::y << '\n';*/
cout << x << '\n';
cout << y << '\n';
return 0;
}
答案 0 :(得分:2)
成员变量与每个实例有关。所以你需要使用
cout << test.x << '\n';
相反,test.y
也是如此。现在你正在使用test::x
,它仅在成员变量为 static 时才有效,即在你班级的所有实例之间共享。