Tagged Questions

Initialization deals with the (often dreaded) task of initializing the contents of your data structure. It's a common practice in statically-typed languages.

learn more… | top users | synonyms (2)

165
votes
6answers
14k views

Do the parentheses after the type name make a difference with new?

If 'Test' is an ordinary class, is there any difference between: Test* test = new Test; //and Test* test = new Test();
102
votes
10answers
8k views

Efficiency of Java “Double Brace Initialization”?

In Hidden Features of Java the top answer mentions Double Brace Initialization, with a very enticing syntax: Set<String> flavors = new HashSet<String>() {{ add("vanilla"); ...
97
votes
14answers
78k views

How to Initialise a static Map in Java

How would you initialise a static Map in Java? Method one: Static initializer Method two: instance initialiser (anonymous subclass) or some other method? What are the pros and cons of each? Here ...
82
votes
4answers
2k views

Why can I initialize a List like an array in C#?

Today I was surprised to find that in C# I can do: List<int> a = new List<int> { 1, 2, 3 }; Why can I do this? What constructor is called? How can I do this with my own classes? I know ...
69
votes
8answers
72k views

Initialization of an ArrayList in one line

I am willing to create a list of options to test something. I was doing: ArrayList<String> places = new ArrayList<String>(); places.add("Buenos Aires"); places.add("Córdoba"); ...
66
votes
12answers
189k views

How to initialize an array in C

I have a large array in C (not C++ if that makes a difference). I want to initialize all members to the same value. I could swear I once knew a simple way to do this. I could use memset() in my case, ...
61
votes
5answers
1k views

How is “int* ptr = int()” value initialization not illegal?

The following code (taken from here): int* ptr = int(); compiles in Visual C++ and value-initializes the pointer. How is that possible? I mean int() yields an object of type int and I can't assign ...
48
votes
3answers
20k views

Initializing C# auto-properties

I'm used to writing classes like this: public class foo { private string mBar = "bar"; public string Bar { get { return mBar; } set { mBar = value; } } //... other methods, no ...
45
votes
6answers
29k views

Initializing private static members

This feels like a dumb question, but what is the best way to initialize a private, static data member in C++? I tried this but it gives me weird linker errors: class foo { private: ...
43
votes
4answers
2k views

Why C# is always winning over VB.NET?

I wrote a program that allow two classes to "fight". For whatever reason C# always wins. What's wrong with VB.NET ? static void Main(string[] args) { Player a = new A(); Player ...
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 ...
41
votes
16answers
15k views

Difference between declaring variables before or in loop?

I have always wondered if, in general, declaring a throw-away variable before a loop, as opposed to repeatedly inside the loop, makes any (performance) difference? A (quite pointless example) in ...
29
votes
9answers
989 views

How to emulate C array initialization “int arr[] = { e1, e2, e3, … }” behaviour with std::array?

(Note: This question is about not having to specify the number of elements and still allow nested types to be directly initialized.) This question discusses the uses left for a C array à la int ...
27
votes
2answers
2k views

What do the following phrases mean in C++: zero-, default- and value-initialization?

What do the following phrases mean in C++: zero-initialization, default-initialization, and value-initialization? What should a C++ developer know about them?
26
votes
5answers
15k views

Python - Create a list with initial capacity

Code like this often happens: l = [] while foo: #baz l.append(bar) #qux This is really slow if you're about to append thousands of elements to your list, as the list will have to ...
24
votes
4answers
618 views

What is the rationale behind this code block in java?

What is the rationale behind making this kind of code valid in java? Does it exist for some particular reason or is it just a byproduct of other Java language design decisions? Can't you just use the ...
23
votes
10answers
39k views

initialize a const array in a class initializer in C++

I have the following class in C++: class a { const int b[2]; // other stuff follows // and here's the constructor a(void); } The question is, how do I initialize b in the ...
22
votes
3answers
331 views

Value-initializing an automatic object?

I'm writing a template class and at one point in my code would like to be able to value-initialize an object of the parameterized type on the stack. Right now, I'm accomplishing this by writing ...
21
votes
9answers
588 views

Other ways to deal with “loop initialization” in C#

To start with I'll say that I agree that goto statements are largely made irrelevant by higher level constructs in modern programming languages and shouldn't be used when a suitable substitute is ...
20
votes
6answers
497 views

Convienient C++ struct initialisation

I'm trying to find a convenient way to initialise 'pod' C++ structs. Now, consider the following struct: struct FooBar { int foo; float bar; }; // just to make all examples work in C and C++: ...
20
votes
5answers
815 views

What's the difference in c++ between new int and new (int)?

what's the difference between int * num = new (int); and int * num = new int; ? Is there a difference at all? EDIT thx all. ... which one is the most correct answer?
20
votes
4answers
4k views

Are function static variables thread-safe in GCC?

In the example code void foo() { static Bar b; ... } compiled with GCC is it guaranteed that b will be created and initialized in a thread-safe manner ? In gcc's man page, found the ...
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 ...
19
votes
3answers
4k views

Static constructor equivalent in Objective-C?

I'm new to Objective C and I haven't been able to find out if there is the equivalent of a static constructor in the language, that is a static method in a class that will automatically be called ...
19
votes
2answers
3k views

Why must const members be intialized in the constructor initializer rather than in its body?

Why must class members declared as const be initialized in the constructor initializer list rather than in the constructor body? What is the difference between the two?
17
votes
2answers
1k views

Can VB.NET be forced to initialize instance variables BEFORE invoking the base type constructor?

After debugging a particularly tricky issue in VB.NET involving the order in which instance variables are initialized, I discovered that there is a breaking discrepancy between the behavior that I ...
17
votes
8answers
7k views

C++: Easiest way to initialize an STL vector with hardcoded elements

I can create an array initialized with elements like this: int a[] = {10, 20, 30}; How do I create an STL vector and initialize it like the above? What is the best way to do so with the minimum ...
17
votes
3answers
4k views

C++ Static member initalization (template fun inside)

For static member initialization I use a nested helper struct, which works fine for non templated classes. However, if the enclosing class is parameterized by a template, the nested initialization ...
17
votes
4answers
307 views

Why do I have to assign a value to an int in C# when defaults to 0?

This works: class MyClass { int a; public MyClass() { int b = a; } } But this gives a compiler error ("Use of unassigned local variable 'a'"): class MyClass { public ...
17
votes
6answers
1k views

What's the difference between dict() and {}?

So let's say I wanna make a dictionary. We'll call it d. But there are multiple ways to initialize a dictionary in Python! For example, I could do this: d = {'hash': 'bang', 'slash': 'dot'} Or I ...
16
votes
3answers
536 views

Why doesn't Java have intializer lists like in C++?

In C++, you can use an initializer list to initialize the class's fields before the constructor begins running. For example: Foo::Foo(string s, double d, int n) : name(s), weight(d), age(n) { // ...
16
votes
5answers
204 views

Mixing operator new[] and placement new with ordinary delete[]

Just out of curiosity, is the following legal? X* p = static_cast<X*>(operator new[](3 * sizeof(X))); new(p + 0) X(); new(p + 1) X(); new(p + 2) X(); delete[] p; // Am I allowed to use ...
16
votes
4answers
1k views

Is new int[10]() valid c++?

While trying to answer this question I found that the code int* p = new int[10](); compiles fine with VC9 compiler and initializes the integers to 0. So my questions are: First of all is this valid ...
16
votes
2answers
2k views

Valid use of accessors in init and dealloc methods?

I've heard now from several sources (stackoverflow.com, cocoa-dev, the documentation, blogs, etc) that it is "wrong" to use accessors and settings (foo, setFoo:) in your init and dealloc methods. I ...
15
votes
2answers
251 views

trivial vs. standard layout vs. POD

In layman's terms, what's the difference between trivial types, standard layout types and PODs? Specifically, I want to determine whether new T is different from new T() for any template parameter T. ...
15
votes
1answer
477 views

Objective-C: init vs initialize

In Objective-C, what is the difference between the init method (i.e. the designated initializer for a class) and the initialize method? What initialization code should be put in each?
15
votes
1answer
282 views

Dynamic memory allocation - default-initialization of primitive types in c++

If I allocate an array of some primitive type e.g. double *v = new double[10]; I need to know, what the inital value of the array entries will be. Is it specified in the standard or compiler ...
15
votes
3answers
335 views

When exactly is an initializer temporary destroyed?

I constructed this experiment today, after answering some question struct A { bool &b; A(bool &b):b(b) { } ~A() { std::cout << b; } bool yield() { return true; } }; bool ...
15
votes
7answers
609 views

Why separate variable definition and initialization in C++?

I'm currently working on some quite old C++ code and often find things like int i; i = 42; or Object* someObject = NULL; someObject = new Object(); or even Object someObject; someObject = ...
15
votes
6answers
6k views

Assigning to self in Objective-C

I'm from the C++ world so the notion of assigning this makes me shudder: this = new Object; // Gah! But in Objective-C there is a similar keyword, self, for which this is perfectly acceptable: ...
14
votes
4answers
304 views

The C++0x way of initializing data members from arguments

Seeing as C++0x supports move semantics, when initializing data members from arguments, should we attempt to move the value instead of copying it? Here's an example showing how I would approach this ...
14
votes
5answers
500 views

Is Type name = name; ever valid code in C++?

The following code is allowed in C++: int a = a; or Type name = name; Both lead to an uninitialized object being initialized by itself which often leads to undefined behavior. Is such code ever ...
14
votes
3answers
17k views

how to use array of function pointers?

how to use array of function pointers in c? how to initialize them?
13
votes
3answers
243 views

Is the C4345 warning of Visual Studio wrong?

The following code triggers C4345 on the marked line: #include <array> #include <iostream> int main(){ static unsigned const buf_size = 5; typedef std::array<char, ...
13
votes
5answers
356 views

c++ array initialization [closed]

Possible Duplicate: How to initialize an array in C array initialization, is referencing a previous element ok? I wonder if its safe to do such initialization in c/c++ standard: int a = ...
13
votes
1answer
1k views

What is dynamic intialization of object in c++?

What is dynamic initialization of objects in c++? Please explain with an simple example...
13
votes
6answers
10k views

Java ArrayList initialization

I am aware that you can initialize an array during instantiation as follows: String[] names = new String[] {"Ryan", "Julie", "Bob"}; Is there a way to do the same thing with an ArrayList? Or must I ...
13
votes
2answers
6k views

using __init__.py

I am not getting usage scenarios or design goals of python __init__.py in my projects. Assume that I have 'model' directory (refers as a package) which I have kept the following files. 1. ...
13
votes
1answer
3k views

Zend Framework: What are the differences between init() and preDispatch() functions in controller objects?

I think the order of execution is init(), preDispatch() and then action() is called. Should I initialize my variables, which are common among all actions, in init() or preDispatch()? I've seen ...
13
votes
4answers
3k views

DRY'er Object Initialization in Ruby

Is there a more 'DRY' way to do the following in ruby? #!/usr/bin/env ruby class Volume attr_accessor :name, :size, :type, :owner, :date_created, :date_modified, :iscsi_target, :iscsi_portal ...

1 2 3 4 5 32