Tagged Questions
The initialization-order tag has no wiki summary.
41
votes
4answers
2k views
What does main return?
I have this question, which i thought about earlier, but figured it's not trivial to answer
int x = x + 1;
int main() {
return x;
}
My question is whether the behavior of the program is defined ...
6
votes
4answers
612 views
C++: Construction and initialization order guarantees
I have some doubts about construction and initialization order guarantees in C++. For instance, the following code has four classes X, Y, Z and W. The main function instantiates an object of class X, ...
5
votes
4answers
2k views
C++ static initialization order
When I use static variables in C++, I often end up wanting to initialize one variable passing another to its constructor. In other words, I want to create static instances that depend on each other.
...
2
votes
4answers
75 views
Initialization order issues
Given the code sample:
class B {
//Some contents.
};
class C {
private:
B& b;
};
class A {
private:
B b;
C c;
};
Class C has a reference to a b, so it ...
1
vote
1answer
40 views
Can the initialization order of class fields in VB.NET be influenced by references to other fields?
Take this sample code:
Class Foo
ReadOnly name As String
Public Sub New(name As String, dependentUpon As Foo)
Me.name = name
Console.Write("{0} created. ", name)
...
1
vote
2answers
341 views
Using a free “char const*” at static initialization time
Initialization order of free objects is undefined in C++. But what about the following?
namespace foo {
char const* str = "hey";
struct A {
A() { cout << str; }
} obj;
}
...