data member inside a class can be const but only if its static. otherwise we need to have a constructor to initialize a constant inside a class.

can we declare a const data member inside a class? //this was an interview question

It seems to me that we can, but is it appropriate for a programmer to declare a constant inside a class.

please give some explanation/reasons, why we can or cannot do?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Off course you can :

struct A
{
    A() : a(5)
    {
    }
    const int a;
};

int main()
{
   A a;
}

This means that the data member a, inside struct A is not going to change.

link|improve this answer
Is it good programming practice to do so(I mean is there any other better way) and also what if the data member is a private. – munish Jul 29 '11 at 12:37
@munish If this data member shouldn't change during the lifetime of objects of this type, then feel free to declare it const. Look up the "const correctness" on google – BЈовић Jul 29 '11 at 12:39
feedback

Short answer : You can have a non-static const member inside a class.

As you still need to assign it a value, the only place where you're allowed to is in the initialization list.

And, well, it's always a good reason to do it if your member is really constant. I mean, const-correctness is mainly an optional tool to help better coding, so use it if you want, you'll thank yourself later. And if you don't use it... well it doesn't really matter!

link|improve this answer
feedback

sure if you have some constants you want to use in your class, and belong to a class.

For example, lets say you have some data type with a unique ID, the ID identifies the object an therefor will never change:

class myData {
   cont int ID;
   myData(int newID) : ID(newID) {}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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