Static and global variable in memory

后端 未结 4 1758
后悔当初
后悔当初 2020-12-06 08:19
  1. Are static variables stored on the stack itself similar to globals? If so, how are they protected to allow for only local class access?

  2. In a multi

4条回答
  •  一个人的身影
    2020-12-06 09:03

    Static variables have static storage duration, so they're not normally placed on the stack. The only "protection" for them is that their name has local visibility at compile time. Passing the address of a static variable gives access it it.

    Using static/globals in a multithreaded situation has the problem that if one thread modifies a the variable at the same time as another attempts to read it (just for one example) what gets read may be bad data.

提交回复
热议问题