vote up 4 vote down star

And if so, how?

(Second) Clarification:

When a program starts up, what is in the memory space which will become global memory, prior to primitives being initialized. I'm trying to understand if it is zeroed out, or garbage for example.

The situation is can a singleton reference be set - via an instance() call, prior to its initialization:

MySingleton* MySingleton::_instance = NULL;

and get 2 singleton instances as a result?

See my C++ quiz on on multiple instances of a singleton...

flag

62% accept rate

5 Answers

vote up 6 vote down check

Yes global primitives are initialized to NULL.

Example:

int x;

int main(int argc, char**argv)
{
  assert(x == 0);
  int y;
  //assert(y == 0); <-- wrong can't assume this.
}

You cannot make any assumptions about classes, structs, arrays, blocks of memory on the heap...

It's safest just to always initialize everything.

link|flag
I believe you can make that assumption about y==0 in C++. Everything gets a default initializer, and for numerical types that's 0. – Branan Sep 18 '08 at 16:59
I don't think so. – Brian R. Bondy Sep 18 '08 at 18:35
Branan, you can't rely on that. The standard does not require that non-static variables be zero-initialized. Most compilers do not initialize non-static variables, because it incurs a runtime cost. – Derek Park Sep 18 '08 at 21:17
The default ctor for builtin types does zero them out, however the default ctor is not called implicitly. See e.g.,std::pair<int, bool> for an example of default initialization of builtin types. – fbrereto Aug 31 at 22:41
[Edit] This answer is wrong - you cannot make any assumptions about default initializations of non-static storage by the compiler unless you have a compiler flag that guarantees initialization to zero. – Nick Bastin Aug 31 at 22:44
show 1 more comment
vote up 1 vote down

Coming from the embedded world...

Your code gets compiled into three types of memory:
1. .data: initialized memory
2. .text: constants and code
3. .bss: uninitialized memory (initialized to 0 in C++ if not explicitly initialized)

Globals go in .data if initialized. If not they are placed in .bss and zero'ed in premain code.

link|flag
vote up 0 vote down

Variables declared with static/global scope are always initialized under VC++ at least.

Under some circumstances there can actually be a difference in behaviour between:

int x=0;

int main() { ... }

and

int x;

int main() { ... }

If you are using shared data segments then VC++ at least uses the presence of an explicit initialization along with a '#pragma data_seg' to determine whether a particular variable should go in the shared data segment or the private data segment for a process.

For added fun consider what happens if you have a static C++ object with constructor/destructor declared in a shared data segment. The constructor/destructor is called every time the exe/dll attaches to the data segment which is almost certainly not what you want.

More details in this KB article

link|flag
vote up 5 vote down

From the standard:

Objects with static storage duration (3.7.1) shall be zero-initialized (8.5) before any other initialization takes place. Zero-initialization and initialization with a constant expression are collectively called static initialization; all other initialization is dynamic initialization. Objects of POD [plain old data] types (3.9) with static storage duration initialized with constant expressions (5.19) shall be initialized before any dynamic initialization takes place. Objects with static storage duration defined in namespace scope in the same translation unit and dynamically initialized shall be initialized in the order in which their definition appears in the translation unit. [Note:8.5.1 describes the order in which aggregate members are initialized. The initial- ization of local static objects is described in 6.7.]

So yes, globals which have static storage duration will be initialized. Globals allocated, e.g., on the heap will of course not be initialized automatically.

link|flag
vote up 0 vote down

What about static int global arrays? Are they initialized to zero too?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.