English 中文(简体)
静态启动的探测阶段?
原标题:Detect stage of static initialization?

我真的想要是什么,我如何知道C++初始阶段究竟是谁?

在分配简单物品时,就会出现静态的初始化。 随之而来的是动态的静态初始化,即分配了更为复杂的静态,而在翻译单位之间没有界定。 这是一种可怕的,没有许多容易应对的办法。 我利用当地的名称空间,立即进行装设头盔文件的工作,但这里的缺陷是,在初始阶段之一,这种说法可能已经过时。

我可以确定初始工作是一件正确的事情,但如果我能以某种方式确定我处于哪一个阶段,则会更加容易。 就我所知,这根本是不可能的,但我希望有人到这里来会有好消息。

我一直在处理造成这种情况的问题,因为守则没有在项目内意外地联系起来。 了解这一问题的答案仍然是明智的,但我猜测答案是肯定的。

我对该问题进行了编辑,我并不真的想要知道主事本身。

问题回答

我拿不出你试图解决的问题。

在你建立申请时,联系人补充了启动守则,这是在本组织为你的方案注入记忆时要执行的第一个守则。 该法典将全力以赴,一旦完成,将称为你的主要职能。

如果你谈论用你自己来取代这一守则,那么你就应当检查你的汇编者/链接人的内在细节(并且非常肯定你知道你做了什么!)

如果你问有多个进程,而且你需要知道一个进程是否已经启动,那么你就应当使用一种适当的融合机制(可以是基础性工作或你自己提供的机制之一)。

如何对待这样的东西:

bool is_started(bool set_started=false){
  static bool flag = false;
  if(set_started)
     flag=true;
  return flag;
}

main(){
  is_started(true);
}

如果你问窗户,我知道你可以发现从一个过程开始的电传。 你们知道,这一切都是初步的。

当然,这张照相机是





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签