全局和静态全局之间有区别吗?

发布于 2024-11-02 09:31:13 字数 238 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠北森屋 2024-11-09 09:31:13

在这种情况下,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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文