#include <iostream>
using namespace std;
class T1
{
const int t = 100;
public:
T1()
{
cout << "T1 constructor: " << t << endl;
}
};
const 멤버 변수 t
를 100 으로 초기화하려고 할 때 .하지만 다음과 같은 오류가 발생합니다.
test.cpp:21: error: ISO C++ forbids initialization of member ‘t’
test.cpp:21: error: making ‘t’ static
const
값을 초기화하려면 어떻게 해야합니까?