当前位置: 首页 > news >正文

c++11 关键字 final 使用

写在最前。。。

请支持原创~~ 

1. 功能

  • 用以指定一个 virtual function 不能被派生类重写;
  • 或者指定一个 class 不能被继承;

2. 语法

对于类中成员函数有两种情况:

  • 只声明时,final 紧跟参数的右括号,如果是纯虚函数,final 会出现在 = 0 之前;
  • 类中定义时,final 在 函数体之前;

对于类定义,final 紧跟类名;

从c++14 开始,会引入一个 is_final 的判断,确认一个 class 是否被定义为 final,通过使用:

std::is_final<A>::value

来判断 class A 是否为 final。

3. 举例

struct A;
struct A final {}; // OK, definition of struct A,// not value-initialization of variable finalstruct X
{struct C { constexpr operator int() { return 5; } };struct B final : C{}; // OK, definition of nested class B,// not declaration of a bit-field member final
};// Abnormal final usage.struct final final // OK, definition of a struct named `final` from which
{                  // you cannot inherit
};// struct final final {}; // Error: redefinition of `struct final`, NOT a// definition of a variable `final` using an elaborated// type specifier `struct final` followed by an// aggregate initialization// struct override : final {}; // Error: cannot derive from final base type;// `override` in given context is a normal name
void foo()
{[[maybe_unused]]final final; // OK, declaration of a variable named `final` of type// `struct final` 
}struct final final; // OK, declaration of a variable named `final` of type// `struct final` using an elaborated type specifier
int main()
{
}

final 只是一个标识,在使用成员函数和类定义时有特殊的意义。而在其他情况下可以作为一个对象名、函数名、类名使用。

struct Base
{virtual void foo();
};struct A : Base
{void foo() final; // Base::foo is overridden and A::foo is the final overridevoid bar() final; // Error: bar cannot be final as it is non-virtual
};struct B final : A // struct B is final
{void foo() override; // Error: foo cannot be overridden as it is final in A
};struct C : B {}; // Error: B is final

注意这里的几个注意点:

  • A 类中 foo() 继承自 Base 类,并把自身定义为 final,即后续继承A 的子类无法再重写 foo();
  • A 类中 bar() 使用了final,但 final 是用在 virtual 的成员函数;
  • B 类想重写 foo(),是不允许的,因为在A类中已经声明为 final;
  • B 类定义的时候已经被声明为 final,所以无法再被其他类继承,即B 类不会有子类;

4. 原文摘录

Specifies that a virtual function cannot be overridden in a derived class or that a class cannot be derived from.
When applied to a member function, the identifier final appears immediately after the declarator in the syntax of a member function declaration or a member function definition inside a class definition.
When applied to a class, the identifier final appears at the beginning of the class definition, immediately after the name of the class.
1) In a member function declaration, final may appear in virt-specifier-seq immediately after the declarator, and before the pure-specifier, if used.
2) In a member function definition inside a class definition, final may appear in virt-specifier-seq immediately after the declarator and just before function-body.
3) In a class definition, final may appear as class-virt-specifier immediately after the name of the class, just before the colon that begins the base-clause, if used.
In the cases (1,2), virt-specifier-seq, if used, is either override or final, or final override or override final. In the case (3), the only allowed value of class-virt-specifier, if used, is final
When used in a virtual function declaration or definition, final specifier ensures that the function is virtual and specifies that it may not be overridden by derived classes. The program is ill-formed (a compile-time error is generated) otherwise.
When used in a class definition, final specifies that this class may not appear in the base-specifier-list of another class definition (in other words, cannot be derived from). The program is ill-formed otherwise (a compile-time error is generated). final can also be used with a union definition, in which case it has no effect (other than on the outcome of std::is_final) (since C++14), since unions cannot be derived from.
final is an identifier with a special meaning when used in a member function declaration or class head. In other contexts, it is not reserved and may be used to name objects and functions.

http://www.lryc.cn/news/24425.html

相关文章:

  • 力扣(LeetCode)426. 将二叉搜索树转化为排序的双向链表(2023.02.28)
  • 华为OD机试真题Python实现【玩牌高手】真题+解题思路+代码(20222023)
  • “速通“ 老生常谈的HashMap [实现原理源码解读]
  • Linux系统介绍及熟悉Linux基础操作
  • mysql数据库limit的四种用法
  • 嵌入式 linux 系统开发网络的设置
  • 算法设计与分析——十大经典排序算法一(1--5)
  • 六.慕课的冲击:知识何以有力量?
  • SQL基础
  • 脏牛复现(CVE2016-5195)
  • Redis源码---内存友好的数据结构该如何细化设计
  • 获取 本周、本月、本年 的开始或结束时间
  • 算法训练营 day58 动态规划 判断子序列 不同的子序列
  • 优思学院|DFMEA是全球制造业的必修课!
  • 【Day02数据结构 空间复杂度】
  • 多数据库管理工具哪家强?ChatGPT点评,第一位并不是Navicat
  • UnityShader常用函数(UnityShader内置函数、CG和GLSL内置函数等)
  • Springboot自定义注解-1
  • 经纬度标定及大地坐标系相关概念(一)
  • synchronized关键字原理
  • 面试被问死怎么办?学会这四招,通过的机率提升30%
  • Android TV UI开发常用知识
  • Xshell 下载及安装
  • 【LeetCode】剑指 Offer(12)
  • vue在history模式下打包部署问题解决
  • Java中常见性能优化策略的总结
  • c++日志库log4cplus使用
  • 什么是接口测试,我们如何实现接口测试?
  • 随机森林在sklearn中的实现
  • [论文总结] 深度学习在农业领域应用论文笔记11