What are static variables?

女生的网名这么多〃 提交于 2019-12-18 01:17:10

问题


What are static variables designed for? What's the difference between static int and int?


回答1:


The static keyword has four separate uses, only two of which are closely related:

  • static at global and namespace scope (applied to both variables and functions) means internal linkage
    • this is replaced by unnamed namespaces and is unrelated to the rest
    • in particular, others tend to imply some sort of uniqueness, but internal linkage means the opposite: you can have many objects with the same name, as long as each has internal linkage and you only have one per translation unit
  • static data members are "shared" among all instances of the class
    • it's more like they are independent of any class instance
    • this is sometimes grouped with static methods
  • static methods do not "operate" on a current instance
    • no this pointer; can call without an instance
  • static local variables (in functions) persist across the scope of each function call

Both static data members and static local variables can become hidden global state, and should be used carefully.

Now which two are closely related? It's not the two class members—the warning about global state gives it away. You can consider static data members as static local variables, where the functions to which they belong are all methods of the class, instead of a single function.

I found many related questions, but, surprisingly, no duplicates.




回答2:


Static variables are initialized in the data segment (on x86; modify as appropriate for other architectures) instead of on the stack. They persist for the life of the program instead of vaporizing once they go out of scope.




回答3:


A static member can be referenced without an instance.

See the "Static Members" section here: http://www.cplusplus.com/doc/tutorial/classes2/



来源:https://stackoverflow.com/questions/1995495/what-are-static-variables

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!