#include <iostream>
using namespace std;
class T1
{
const int t = 100;
public:
T1()
{
cout << "T1 constructor: " << t << endl;
}
};
Quando estou tentando inicializar a variável const membro t
com 100. Mas está me dando o seguinte erro:
test.cpp:21: error: ISO C++ forbids initialization of member ‘t’
test.cpp:21: error: making ‘t’ static
Como posso inicializar um const
valor?