• 【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

  • 相关阅读:
    libuv 中文编程指南(一)序言
    一些鲜为人知却非常实用的数据结构
    libuv 中文编程指南(二)libuv 基础
    Zookeeper 的 Lua 绑定(二)
    高度怀疑
    不能没有你
    第一次看流星雨记
    调侃下蓝网队 我还是比较极端的 不要好 那就要坏吧
    摇滚校园
    守法公民
  • 原文地址:https://www.cnblogs.com/Patt/p/10657830.html
Copyright © 2020-2023  润新知