C++中,常成员变量只能在构造函数赋值,且只能通过参数列表的形式赋值,且必须在构造函数赋值。
(拥有常成员变量的类的构造函数必须对所有成员变量赋值。)
#include <iostream>
using namespace std; class Demo
{
public:
int const a;
const int b;
Demo(int x,int y,char *hello);
Demo(int x,int y );
void show(void);
}; Demo::Demo(int x,int y,char* hello):a(x),b(y)
{
cout<<hello<<endl;
}
Demo::Demo(int x,int y):a(x),b(y)
{ } void Demo::show(void)
{
cout << "a="<<this->a<<endl;
cout << "b="<<this->b<<endl;
} int main() {
//Demo one(1 , 123);
Demo one( , ,"good job");
one.show(); while();
return ;
} //测试:赋值成功
a=
b=