当前位置:  开发笔记 > 编程语言 > 正文

C++中是否存在'override'说明符的反转?

如何解决《C++中是否存在'override'说明符的反转?》经验,为你挑选了2个好方法。

override关键字允许确保该函数将被覆盖.我正在寻找相反的功能.所以 - 当我写一个新函数时 - 我想用它来标记它以确保它不会被意外覆盖.

(另外,我不想做它static,因为它看起来像属于一个对象而不是类)



1> Vittorio Rom..:

我想用一些东西来标记,以确保它不会被意外覆盖.

您可以使用说明final符.来自cppreference的示例:

struct Base
{
    virtual void foo();
};

struct A : Base
{
    void foo() final; // A::foo is overridden and it is the final override
    void bar() final; // Error: non-virtual function cannot be overridden or be final
};



2> songyuanyao..:

如果您不希望在派生类中重写虚函数,则可以使用final:

指定无法在派生类中重写虚函数,或者无法继承类.

例如

struct Base
{
    virtual void foo() final; // foo cannot be overridden in the derived class
};
struct Derived : Base
{
    void foo();               // Error: foo cannot be overridden as it's final in Base
};

推荐阅读
落单鸟人
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有