What does “const class” mean?

前端 未结 5 1873
不思量自难忘°
不思量自难忘° 2020-12-14 14:34

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

5条回答
  •  执念已碎
    2020-12-14 15:17

    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.

提交回复
热议问题