After some find and replace refactoring I ended up with this gem:
const class A
{
};
What does "const class" mean? It seems to compile ok.
After some find and replace refactoring I ended up with this gem:
const class A
{
};
What does "const class" mean? It seems to compile ok.
It's meaningless unless you declare an instance of the class afterward, such as this example:
An interim
nullptr
implementation if you're waiting for C++0x.Not for me it doesn't. I think your compiler's just being polite and ignoring it.
Edit: Yep, VC++ silently ignores the const, GCC complains.
The
const
is meaningless in that example, and your compiler should give you an error, but if you use it to declare variables of that class between the closing}
and the;
, then that defines those instances asconst
, e.g.:Try compiling it with GCC, it will give you below error:
error: qualifiers can only be specified for objects and functions.
As you can see from the error that only objects(variables, pointers, class objects etc.) and functions can be constant. So try making the object as constant, then it should compile fine.
const class A {};
const A a ;
If you had this:
Then it would clearly mean that 'a' is const. Otherwise, I think that it is likely invalid c++.