Tagged Questions

18
votes
2answers
470 views

C++ vector of arrays

Why does this work: std::pair<int, int> p = {1,2}; std::vector<std::pair<int, int>> vp = { {1,2}, {3,4} }; But this doesn't? std::array<int, 2> a = {1,2}; // still ok ...
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) { // ...
14
votes
4answers
496 views

Initializing from an initializer list, but without {{{{{{{{ … }}}}}}}}?

I recently stumbles across some problem with initializer lists. Consider a program that stores map-like data struct MyMapLike { MyMapLike(std::map<std::string, int> data) ...
11
votes
3answers
324 views

Initializer-list-constructing a vector of noncopyable (but movable) objects

One can push_back rvalues of a noncopyable-but-movable type into a vector of that type: #include <vector> struct S { S(int); S(S&&); }; int main() { std::vector<S> ...
10
votes
6answers
3k views

std::initializer_list as function argument

For some reason I thought C++0x allowed std::initializer_list as function argument for functions that expect types that can be constructed from such, for example std::vector. But apparently, it does ...
9
votes
2answers
159 views

initializer_list and move semantics

Am I allowed to move elements out of a std::initializer_list<T>? #include <initializer_list> #include <utility> template<typename T> void foo(std::initializer_list<T> ...
9
votes
2answers
317 views

Why does this initializer_list use misbehave when passing strings?

I've tried the C++0x initializer-list implementation of my G++ version but it outputs only empty lines. #include <initializer_list> #include <iostream> #include <string> int ...
9
votes
4answers
585 views

How do I initialize a member array with an initializer_list?

I'm getting up to speed with C++0x, and testing things out with g++ 4.6 I just tried the following code, thinking it would work, but it doesn't compile. I get the error: incompatible types in ...
8
votes
2answers
131 views

Can I list-initialize a vector of move-only type?

If I pass the following code through my GCC 4.7 snapshot, it tries to copy the unique_ptrs into the vector. #include <vector> #include <memory> int main() { using move_only = ...
7
votes
5answers
287 views

Implementing a std::array-like container with a C++11 initializer_list

The only and imo very inconvenient caveat of std::array is that it can't deduce its size from the initializer list like built-in C arrays, it's size must be passed as a template. Is it possible to ...
7
votes
1answer
2k views

initializer_list not working in VC10

hi i wrote this program in VC++ 2010: class class1 { public: class1 (initializer_list<int> a){}; int foo; float Bar; }; void main() { class1 c = {2,3}; getchar(); } but i get this errors ...
6
votes
1answer
102 views

#include <initializer_list> required to use initializer list in range-based for?

The final C++11 standard includes provisions for range-based for to "just work" for native arrays without having to include <iterator> or any other header. This was addressed first, as far as I ...
6
votes
1answer
131 views

initializer list as argument to operator[]

This question is related to the one discussed here. I try to use an initializer list to create an argument to be passed to operator[]. #include <string> #include <vector> struct A { ...
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
1answer
148 views

Converting Initializer list

I need to convert a class written in C++ 0x to one which compiles in Visual studio 2008. The code uses std::initializer_list. Following is the code template <typename data_type> class ...
6
votes
2answers
227 views

Expanding parameter pack containing initializer_list to constructor

I intend to use shared_ptr quite a bit in an upcoming project, so (not being aware of std::make_shared) I wanted to write a variadic template function spnew<T>(...) as a shared_ptr-returning ...
6
votes
3answers
291 views

Initialising a struct that contains a vector of itself

I have a menu system that I want to initialise from constant data. A MenuItem can contain, as a sub-menu, a vector of MenuItems. But it only works up to a point. Here are the bare bones of the ...
6
votes
6answers
873 views

C++ Initializer lists - I don't get it

In Effective C++, it is said that data elements in the initializer list need to be listed in the order of their declaration. It is further said that the reasoning for this is that destructors for data ...
6
votes
4answers
359 views

Why doesn't my template accept an initializer list

I have created a template as follows template<typename T> void f(T const& t) { } I wanted for this to be callable by containers but also by initializer lists. I thought it would be ...
6
votes
2answers
869 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() : ...
5
votes
2answers
246 views

Why is the size not a template argument of std::initializer_list?

std::initializer_list is constructed by the compiler from a brace-enclosed init list and the size of this list must be a compile time constant. So why did the committee decide to omit the size from ...
5
votes
1answer
192 views

Syntax in Assigning to Map of structs

struct Structure { // Structure(const char* n, int v, bool a) : name(n), value(v), awesome(a) {} const char* name; int value; bool awesome; }; std::map<const char*, Structure> map; ...
5
votes
1answer
368 views

C++0x nested initializer lists

I would like to use C++0x new initializer list feature to initialize a std::vector with a compile time defined number of items for a new API I'm currently working on. Something like this: ...
5
votes
1answer
301 views

c++ initializer lists and variadic templates

I wanted to create an array: template < typename T, typename ... A > struct a { T x [1 + sizeof... (A)]; a () = default; a (T && t, A && ... y) : x { t, y... } {} }; int ...
5
votes
3answers
2k views

Brace-enclosed initializer list constructor

I have class Phenotype with the following constructor: Phenotype(uint8 init[NUM_ITEMS]); I can create a Phenotype like this: uint8 data[] = {0,0,0,0,0}; Phenotype p(data); But I get an error ...
5
votes
1answer
533 views

What would a std::map extended initializer list look like?

If it even exists, what would a std::map extended initializer list look like? I've tried some combinations of... well, everything I could think of with GCC 4.4, but found nothing that compiled.
5
votes
2answers
416 views

C++0x, Compiler hooks and hard coded languages features

I'm a little curious about some of the new features of C++0x. In particular range-based for loops and initializer lists. Both features require a user-defined class in order to function correctly. I ...
5
votes
2answers
3k views

C++0x initializer list example

I would like to see how this example of existing code would be able to take advantage of the C++0x initializer list feature. Example0: #include <vector> #include <string> struct Ask { ...
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 ...
4
votes
2answers
119 views

Why is this considered an extended initializer list?

#include <vector> struct foo { int i; int j; int k; }; int main() { std::vector<foo> v(1); v[0] = {0, 0, 0}; return 0; } When compiling this using g++, I get ...
4
votes
4answers
455 views

Initializing a member array in constructor initializer

class C { public: C() : arr({1,2,3}) //doesn't compile {} /* C() : arr{1,2,3} //doesn't compile either {} */ private: int arr[3]; };*/ I believe the reason is that arrays can be ...
3
votes
3answers
80 views

Is initializing with “var{args}” a new feature of C++0x, or merely syntactic sugar?

I was reading the C++0x faq and came across the section detailing initializer lists. The examples were mostly variations of: vector<int> vi = { 1, 2, 3 }; vector<int> vj({1, 2, 3}); // ...
3
votes
3answers
76 views

Using initalizer lists with inherited variables

I've been fiddling with a program for about 20 minutes and I found that for some reason it won't let me use inherited variables in initialization lists. This program, for example: class A { ...
2
votes
1answer
94 views

How tightly coupled is the compiler's brace-initializer-list to the type `std::initializer_list`?

Can I achieve the same effects without the C++ header <initializer_list>? Does class initializer_list have to live in namespace std (does the compiler require this)? I'm fine with a solution ...
2
votes
1answer
38 views

Templated initialization_list - why does lookup fail

Given #include <utility> template <typename T1, typename T2, typename T3> void foo(std::initializer_list<std::pair<T1, T2>> _a, std::initializer_list<T3> _b) { /* ...
2
votes
7answers
87 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
2answers
156 views

Templates don't always guess initializer list types

#include <initializer_list> #include <utility> void foo(std::initializer_list<std::pair<int,int>>) {} template <class T> void bar(T) {} int main() { foo({{0,1}}); ...
2
votes
6answers
154 views

C++ Member Initialization List

Please explain how to use member initialization list I have a class declared in .h file and cpp file for implementation something like this: class Example { private: int m_top; const int ...
2
votes
3answers
137 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 ...
2
votes
3answers
207 views

min and max Variadic Template variant in C++11?

Am I right in reading the standard that from min and max (and minmax for that matter) there are new initializer_list variants, but no Variadic Template variants? Thus, this is ok: int a = min( { ...
2
votes
5answers
226 views

Can I cause a compile error on “too few initializers”?

I am using an aggregate initializer to set up a block of static data for a unit test. I would like to use the array size as the expected number of elements, but this can fail if too few initializers ...
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 ...
1
vote
6answers
53 views

cannot assign or copy iostream object?

iostream and other stream class are not actually class, but typedefs, right? Here is the problem, I tried to initialize a istream object in initialization list, but unfortunately I got an error, code ...
1
vote
2answers
75 views

When is memory allocated using alloca freed for class members?

class MyString { public: MyString(int length):_ptr(alloca(length)) { } //Copy Constructor, destructor, other member functions. private: void* _ptr; }; int main() { MyString str(44); ...
1
vote
3answers
401 views

How to construct std::array object with initializer list? [closed]

Possible Duplicate: How do I initialize a member array with an initializer_list? You can construct an std::array just fine with an initializer list: std::array<int, 3> a = {1, 2, ...
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
2answers
155 views

Seg fault when using c++0x initializer list

I get a seg fault when I use the c++0x initializer list with a vector. I can't figure out why it is happening. My debugger says that the crash happens at this function in the standard library: ...
0
votes
4answers
82 views

Initialize a static non-const data member of a class

I have written the following sample code : class MyClass { static int a; public: MyClass ( int i ) : a ( i ) { cout << " \n ctor called. a is : "<< a << " \n"; ...
0
votes
4answers
139 views

Calling overloaded constructor from constructor initialisation list

In the code below, my intent is to call one of two overloaded constructors for the kap (class opacity) based on what arguments are passed to the object of class material: class opacity{ private: ...
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 2