#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
値を初期化するにはどうすればよいですか?