为什么全局变量没有用我在 extern 变量中给出的字符串初始化

发布于 2024-09-07 09:16:32 字数 359 浏览 10 评论 0原文

//s_request_view() constructor is declared as below
namespace Identity_VIEW
{
Published_view_identity s_request_view("SAMPLE");
};

//The constructor is called in another source file as below,
bind_view(Identity_VIEW::s_request_view);

相同的代码在 Windows 上运行良好,但在 SBC (PowerPC) 上 s_request_view 作为 NULL 传递。

谁能帮我找出为什么它的行为不同?

//s_request_view() constructor is declared as below
namespace Identity_VIEW
{
Published_view_identity s_request_view("SAMPLE");
};

//The constructor is called in another source file as below,
bind_view(Identity_VIEW::s_request_view);

This same code is working fine on windows but on SBC (PowerPC) s_request_view is passed as NULL.

Can anyone please help me finding out why is it behaving differently?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

七禾 2024-09-14 09:16:58

我想,这里的答案是编译器不保证全局变量初始化的顺序。如果您的 bind_view 是从另一个全局变量的构造函数调用的 - 您将遇到浮动错误。

尝试使用以下方法:

namespace Identity_VIEW
{
   Published_view_identity & getRequestView()
   {
      static Published_view_identity s_request_view ("Sample");
      return s_request_view;
   }
}

...
bind_view(Identity_VIEW::getRequestView());

这可以帮助解决全局变量初始化的顺序。然而,这个解决方案不是线程安全的(如果你关心的话)......

I think, the answer here is that compiler does not guarantee the order of global variables initialization. If your bind_view is called from constructor of another global variable - you'll have a floating bug.

Try using the following approach:

namespace Identity_VIEW
{
   Published_view_identity & getRequestView()
   {
      static Published_view_identity s_request_view ("Sample");
      return s_request_view;
   }
}

...
bind_view(Identity_VIEW::getRequestView());

That can help resolving the order of the global variables initialization. Nevertheless, this solution is not thread-safe (in case you care)...

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