Tagged Questions

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) { // ...
6
votes
8answers
160 views

Optimization due to constructor initializer list

Constructors should initialize all its member objects through initializer list if possible. It is more efficient than building the constructors via assignment inside the constructor body. ...
6
votes
2answers
870 views

C++: Constructor versus initializer list in struct/class

An object of a struct/class (that has no constructor) can be created using an initializer list. Why is this not allowed on struct/class with constructor? struct r { int a; }; struct s { int a; s() : ...
4
votes
1answer
101 views

Initializing members out of order - is this OK?

From a comment on this answer: Class members are initialized in their order of declaration. By this logic, the following constructor should invoke undefined behaviour: struct Foo { Bar a; Bar ...
2
votes
7answers
88 views

Avoid calling constructor of member variable

I'm pretty sure that this question has already been asked. But even after searching for some minutes, I didn't find any post which could answer my question. I have the following C++-class: // ...
2
votes
3answers
138 views

C++: Should I initialize pointer members that are assigned to in the constructor body to NULL?

Suppose I have: // MyClass.h class MyClass { public: MyClass(); private: Something *something_; } // MyClass.cpp MyClass::MyClass() { something_ = new Something(); } Should I ...
1
vote
3answers
67 views

Strange code segment from c++

Reading code from other posts, I'm seeing something like this. struct Foo { Foo() : mem(0) {} int mem; }; What does mem(0) {} does in this case, especially regarding the curly brackets? I have ...
0
votes
1answer
76 views

Is it possible to pass data as initializer_list to std::array of structures?

I have the following code. Basically I want to initialize a std::array of non-POD structs using aggregate initialization syntax. Both g++ 4.6 and 4.7 (latest weekly snapshot) fails to compile the ...
0
votes
3answers
210 views

Order of calling base class constructor from derived class initializer list

struct B { int b1, b2; B(int, int); }; struct D : B { int d1, d2; // which is technically better ? D (int i, int j, int k, int l) : B(i,j), d1(k), d2(l) {} // 1st Base // or D (int i, int j, ...
-1
votes
3answers
75 views

Didn't understand the following comment (in bold) on Bruce Eckel's “Thinking in C++” on its page 624 Vol. 1

#include <fstream> using namespace std; ofstream out("order.out"); #define CLASS(ID) class ID { \ public: \ ID(int) { out << #ID " constructor\n"; } \ ~ID() { out << #ID " ...