“const 类"是什么意思?意思是?

2022-01-23 00:00:00 class constants c++

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.

解决方案

What does "const class" mean? It seems to compile ok.

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.

相关文章