Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
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.

share|improve this question
1  
Please always post the full error that you get. – nightcracker Dec 28 '11 at 18:05
1  
const int is still bound to an object, not to class. – iccthedral Dec 28 '11 at 18:07
1  
In a static method there is no class instance so there are no class members ... FYI you can make this static const int i = 42; if you want to use it this way. – AJG85 Dec 28 '11 at 18:12

3 Answers

up vote 4 down vote accepted

The const member is initialized during the object construction. The static members are not dependent on the object creation and don't have access to this pointer hence they don't know where your const member variable resides.

share|improve this answer

const means different things. In this case, it means that i is immutable after it's been initialized. It doesn't mean it's a literal constant (like I believe you think it means). i can be different for different instances of TConst, so it's logical that static methods cannot use it.

share|improve this answer
It's always so simple ) Thanks – Alexander Dec 28 '11 at 18:12

It wouldn't work even if it wasn't const:

error: a nonstatic member reference must be relative to a specific object

Static functions can not access non-static member variables. This is because non-static member variables must belong to a class object, and static member functions have no class object to work with.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.