extern

C++ 函数声明中 extern、static 和 mutable 的角色:理解它们的语义和作用

关键字作用extern引用其他源文件中的函数static限制函数的作用域到当前源文件mutable允许在函数内修改声明为 const 的对象 C++ 函数声明中 extern、st…