c – 虚函数的显式覆盖

前端之家收集整理的这篇文章主要介绍了c – 虚函数的显式覆盖前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我刚刚发现C/C++LI在标准C:override上有一个不存在的关键字(AFAIK).

我对C/C++LI了解不多,所以,有人可以解释它包含在哪个目的,以及它是否是添加到C的理想功能

解决方法

override是Microsoft的特殊关键字扩展,可用于C/C++LI和Visual C实现.它类似于Java中的 @Override注释或C#中的 override,并提供更好的编译时间检查,以防您没有覆盖您想要的内容.

从第一个链接

override indicates that a member of a managed type must override a base class or a base interface member. If there is no member to override,the compiler will generate an error.

override is also valid when compiling for native targets (without /clr). See Override Specifiers and Native Compilations for more information.

override is a context-sensitive keyword. See Context-Sensitive Keywords for more information.

从C 11标准开始,覆盖说明符现在是标准化关键字.支持仍然有限,根据此page from Apache StdCxx,GCC 4.7,Intel C 12.0和Visual C 2012支持覆盖(在Visual C 2005中具有预标准化支持).

原文链接:https://www.f2er.com/c/115401.html

猜你在找的C&C++相关文章