全局和静态全局之间有区别吗?
在 Objective C 中(如果这很重要的话)这两个语句之间有区别吗?如果是这样,又怎样?
语句 1:
std::map<id, id> foo;
语句 2:
static std::map<id, id> sFoo;
请注意,这些都是将在 .mm at 文件范围中声明的全局变量。
In Objective C (if that matters) is there a difference between these two statements? And if so, what?
Statement 1:
std::map<id, id> foo;
Statement 2:
static std::map<id, id> sFoo;
Note that these are both globals that would be declared in the .mm at file scope.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在这种情况下,
static
意味着该变量仅在当前文件中可见,但在该文件中的任何位置都可见。所以不:真正的全局变量在任何地方都是可见的。static
, in this context, means that the variable is visible only within the current file, but is visible everywhere in that file. So no: a true global variable would be visible everywhere.