#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
ค่าได้อย่างไร