如下所示:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//final,override出现在形参列表以及尾置返回类型之后 #include <iostream> using namespace std; struct B{ virtual void f1( int ) const ; virtual void f2( int ); void f3( int ) final; //出错,final不能修饰非虚函数 }; struct D:B{ void f1( int ) const override ; //去掉const将出错,必须和基类中的函数原型一致,否则不能用override来表示覆盖 void f2( int ) final; //final说明继承D的派生类中不能覆盖该函数 void f3(); }; struct E:B{ void f2( int ); //ok,其直接基类B中该函数没有final说明符 }; struct F:D{ void f2( int ); //出错,无法覆盖该函数,原因是其直接基类D中有final说明符 }; |
final表示该虚函数不能被重写,override表示该函数重写了某个虚函数
以上这篇详谈c++11 final与override说明符就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。