Tagged Questions
The static-order-fiasco tag has no wiki summary.
20
votes
11answers
12k views
Finding C++ static initialization order problems
We've run into some problems with the static initialization order fiasco, and I'm looking for ways to comb through a whole lot of code to find possible occurrences. Any suggestions on how to do this ...
7
votes
10answers
200 views
Does Java have the static order initialisation fiasco?
A recent question here had the following code (well, similar to this) to implement a singleton without synchronisation.
public class Singleton {
private Singleton() {}
private static class ...
7
votes
4answers
510 views
Static initialization order fiasco
In his "Thinking in C++" (Chapter 10) Eckel describes a technique that was pioneered by Jerry Schwarz to solve the fiasco.
He says that if we want to initialize x to 100 and y to 200 and share them ...
5
votes
2answers
116 views
Does this code produce Undefined Behavior or it is merely Unspecified Behavior?
Lets say that we have two compilation units as follows:
// a.cpp
extern int value2;
int value1 = value2 + 10;
// b.cpp
extern int value1;
int value2 = value1 + 10;
When I tried it on VC2010, it ...
5
votes
3answers
256 views
Double initialization of a static STL container in a C++ library
There are a few good questions and answers here around the "static initialization order fiasco", but I seem to have hit against yet another expression of it, specially ugly because it does not crash ...
3
votes
2answers
59 views
Is the order of file-level static variables always the same within a given translation unit?
I have a program split up into two source files:
example.cpp
#include <iostream>
class A {
public:
A(int x) {
::std::cout << "In A(" << x << ")\n";
}
};
static ...
3
votes
2answers
2k views
Initializing qt resources embedded in static library
I have next situation: I need to create widget in standalone static library, which then will be linked with final application (visual c++ 9.0, qt 4.5).
This static widget library contains some ...