zoukankan      html  css  js  c++  java
  • 【C++ 拾遗】extern 关键字

    Separate compilation

    • let us split our programs into several files, each of which can be compiled independently.

    • allows programs to be written in logical parts.

    Distinction between a declaration and a definition

    To support separate compilation, C++ distinguishes between declarations and definitions. A declaration makes a name known to the program. A definition creates the associated entity.

    A variable declaration specifies the type and name of a variable. A variable definition is a declaration. In addition to specifying the name and type, a definition also allocates storage and may provide the variable with an initial value.

    One Definition Rule

    Variables must be defined exactly once but can be declared many times.

    Where extern comes in

    When we separate a program into multiple files, we need a way to share code across those files. For example, code written in one file may need to use a variable defined in another file. A file that wants to use a name defined elsewhere includes a declaration for that name.

    To obtain a declaration that is not also a definition, we add the extern keyword and must not provide an explicit initializer:

    extern int i;    // declares but does not define i;
    int j; //    declares and defines j
    

    In this case, the extern signifies the the variable i is not local to this file and that its definition will occur elsewhere.

    Any declaration that includes an explicit initializer is a definition. We can provide an initializer on a variable defined as extern, but doing so overrides the extern. An extern that has an initializer is a definition.

    It is an error to provide an initializer on an extern inside a function.

    extern 的第二个用法

    To define a single instance of a const variable, we use the keyword extern on both its definition and declaration(s). In other words, to share a const object among multiple files, you must define the variable as extern.

    extern 的第三个用法

    explicit instantiation a.k.a. extern template

  • 相关阅读:
    linux下查找文件及查找包含指定内容的文件常用命令
    小程序与h5之前切换频繁时候,点击无反应
    vue项目微信分享之后路由链接被破坏问题
    async-await用法
    小程序input组件获得焦点时placeholder内容有重影
    es6语法在ios低版本的支持性
    h5页面避免两个页面反复跳转死循环
    小程序getLocation出现的各种问题汇总
    小程序组件跳转页面存在兼容问题
    nigix反向代理
  • 原文地址:https://www.cnblogs.com/Patt/p/10657830.html
Copyright © 2011-2022 走看看