What is the difference between static global and non-static global identifier in C++?

前端 未结 4 1515
走了就别回头了
走了就别回头了 2021-01-31 03:46

What is the difference between static global and non-static global identifier in C++?

相关标签:
4条回答
  • 2021-01-31 04:10

    If you don't know what the difference is, correct answer will probably be even more confusing to you. In short, statics of a class aren't realted to statics at file scope. Statics of a class are esentially identical to regular variables, but they will have to be referenced by prefixing them with class name. Statics at file scope are regular variables that are local to the file only. To understand what that means, try to add two variables with the same name into a single project. You will get linker errors because there are multiple identical symbols. By making symbols static you will avoid that problems and variable's name won't be accessible from outside the file.

    0 讨论(0)
  • 2021-01-31 04:16

    Static limits the scope of the variable to the same translation unit.
    A static global variable has internal linkage.
    A non-static global variable has external linkage.

    Good Read:
    What is external linkage and internal linkage?

    0 讨论(0)
  • 2021-01-31 04:22

    A global static variable is only available in the translation unit (i.e. source file) the variable is in. A non-static global variable can be referenced from other source files.

    0 讨论(0)
  • 2021-01-31 04:23

    Global Non static variables are accessable from other files whereas static global variables are not

    0 讨论(0)
提交回复
热议问题