5
スレッドと静的変数の初期化を使用するC++ 11コードの次のビットがあります。私の質問は次のとおりです:C++静的変数の初期化とスレッド
C++言語は静的変数の単一の初期化について何を保証していますか?以下のコードは正しい値を表示しますが、新しい標準ではどのように記述されているのかわかりませんメモリモデルはスレッドと対話する必要があります。変数がスレッドローカルになるのはいつですか?
#include <iostream>
#include <thread>
class theclass
{
public:
theclass(const int& n)
:n_(n)
{ printf("aclass(const int& n){}\n"); }
int n() const { return n_; }
private:
int n_;
};
int operator+(const theclass& c, int n)
{
return c.n() + n;
}
void foo()
{
static theclass x = 1;
static theclass y = x + 1;
printf("%d %d\n",x.n(),y.n());
}
int main()
{
std::thread t1(&foo);
std::thread t2(&foo);
t1.join();
t2.join();
return 0;
}