class TConst
{
const int i;
int& ref;
public:
TConst(int n):i(n),ref(n){}
static void p1(){prn(i);}//error here
};
My compiler generates error when i try to use const class member in static member-function. Why it is not allowed?
Thanks.
static const int i = 42;if you want to use it this way. – AJG85 Dec 28 '11 at 18:12