std::initializer_list is a special type in C++11 which is used to construct containers and other types from a list of values.

learn more… | top users | synonyms

0
votes
1answer
32 views

How do I use an initializer list with a base class?

Given the following: struct A { int foo; int bar; }; struct B : public A { int baz; }; How would I construct a B with an initializer list that also constructs the elements in A? The ...
2
votes
3answers
100 views

Graph with initializer_list<Edge> C++ - How I do to create Edges at initializer_list without “Edge” word?

My Graph constructor: Graph(std::initializer_list<Edge> list); My Edge constructor: Edge(int out, int in); I wanna create my Graph by the following way: Graph g = { (1,2), (3,4), (5,1), ...
3
votes
3answers
155 views

Converting Variadic template pack into std::initializer_list

Assume that there is a function which accepts several strings: void fun (const std::initializer_list<std::string>& strings) { for(auto s : strings) // do something } Now, I have a ...
7
votes
1answer
658 views

how to implement an initializer list for user defined type?(analogus to std::vector initializer list)

std::vector can be initialized as std::vector<std::string> words1 {"the", "frogurt", "is", "also", "cursed"}; ref Now if want to achieve the similar functionality for one of my types how ...
0
votes
3answers
103 views

How to create a std::initializer_list from variable data

I'm trying to create a std::discrete_distribution object using data passed into a class constructor. I know how to create this using static data, but cannot figure out how using variable data ...
3
votes
1answer
166 views

C++ function call with default argument in std::array?

Now I have a function in C++ void F( std::array<int,3> x ) { //... } I hope the argument 'x' could have a default value, how can I do this? If not a function argument, I can simply use ...
4
votes
1answer
133 views

How are `std::initializer_list` values passed by the compiler? (Or: how can I get around a universal overload with one?)

Continuing my saga, I've realized that I can make overloads of my access functions, using a single std::initializer_list parameter instead: class array_md { //... my_type & ...
0
votes
3answers
76 views

The constructor initializer list and const variable

probably this might be a very basic question, but still wanna understand some basic concepts... why do we define a variable as a const ? - to keep the value of that specific variable constant through ...
9
votes
1answer
165 views

Is it legal to declare a constexpr initializer_list object?

As a question that came up during the discussion of this SO question: Is it legal, maybe with N3471, to declare a constexpr std::initializer_list object? Example: constexpr ...
6
votes
0answers
457 views

Unexpected non-constant std::initializer_list

I was toying a little bit with the indices trick to see where I could go to with and came across a strange error... First, the plain not-so-old indices: template<std::size_t...> struct indices ...
2
votes
1answer
150 views

Implicit conversion in array initializer list

Why implicit conversion from const char* to std::string does not work in the latter case? Link a reference to C++ standard if possible, please. Variant 1: struct Foo { Foo(const char* a) {} }; ...
2
votes
1answer
140 views

constexpr array and std::initializer_list

I was trying to write an compile-time valarray that could be used like this: constexpr array<double> a = { 1.0, 2.1, 3.2, 4.3, 5.4, 6.5 }; static_assert(a[0] == 1.0, ""); static_assert(a[3] == ...
1
vote
2answers
46 views

Java-like Arrays.asList() in c++

Does c++ support either in the STL or there exists an external library supporting Arrays.asList()? Typical usage private ArrayList<String> lexeme = new ArrayList<String>(Arrays.asList(" ...
3
votes
2answers
118 views

Constructor and initializer_list

Could somebody tell me the theory behind this? Why the last call doesn't compile? test.cc: In function ‘int main()’: test.cc:15:12: error: too many braces around initializer for ‘int’ ...
2
votes
2answers
125 views

Constructor for nested initializer lists

Is it possible to have a generic constructor that takes any type of initializer list, even if this has nested lists within? Say you have the following partial template specialization for a class that ...
3
votes
1answer
104 views

Using std::initializer_list to create a tree?

What I have is something like: struct ExprTreeNode { char c; std::vector< int > i; }; ExprTreeNode tn { '+', { 1, 2, 3, 4 } }; What I want to write is something like: MyTree t1 { '+', ...
3
votes
2answers
85 views

Assigning base class members in copy assignment operator

I've got a class that inherits from a MSFT class, and therefore cannot be changed, and I'd like my derived class to have identical behavior for its copy constructor and copy assignment operator. The ...
4
votes
1answer
167 views

is there a way to pass nested initializer lists in C++11 to construct a 2D matrix?

Imagine you have a simple matrix class template <typename T = double> class Matrix { T* data; size_t row, col; public: Matrix(size_t m, size_t n) : row(m), col(n), data(new T[m*n]) {} ...
3
votes
3answers
78 views

Assignment to readonly property in initializer list

Can one tell me, why the heck does it compile? namespace ManagedConsoleSketchbook { public interface IMyInterface { int IntfProp { get; set; } ...
5
votes
2answers
66 views

When it make sense to replace “class_name obj_name = func()” by “class_name obj_name{func()}”?

In a code I see the following construct: const class_name obj_name{func()}; func() return an object of the class called class_name. So, I wonder why not to use the following construction: const ...
3
votes
1answer
97 views

Variadic template argument deduction fails when passing initializer lists

Bar holds a std::vector of std::pairs of std::arrays of FooValueAdaptors. FooValueAdaptor implicitly converts int to bool to FooValue, which makes little sense in this contrived example, but perfect ...
1
vote
1answer
52 views

initialize const variable with extra check

I've the following struct: // options for pool_base-based pools struct pool_options { // pool initial_size const uint32 initial_size; // can pool grow? const bool can_grow; // if ...
0
votes
1answer
57 views

Child of CObject in Copy Constructor Initializer List

I've been tasked with porting some legacy code, and in doing so I'd like to follow best practices as much as possible, since my predecessor regrettably did not. Below is a basic framework of the issue ...
0
votes
1answer
108 views

Anyone give me an example to use QVector::QVector(std::initializer_list<T> args)?

Anyone give me an example to use the following constructor int Qt? QVector::QVector(std::initializer_list<T> args);
16
votes
1answer
209 views

std::initializer_list without cbegin()/cend()

If elements in std::initializer_list are always const values, why we have template method like begin()/end() and not cbegin()/cend()? This names (by conventions, comparing to e.g. std::vector) could ...
2
votes
1answer
54 views

c++: - setting default initializer_list argument Y of size argument X, where X and Y are function parameters

Consider the following code enum class VAR_CHANGE{TYPE1, TYPE2, TYP3}; void cell ( const std::initializer_list<double>& values, const ...
15
votes
2answers
1k views

Why use variadic arguments now when initializer lists are avaiable?

I've been wondering what are the advantages of variadic arguments over initializer lists. Both offer the same ability - to pass indefinite number of arguments to a function. What I personally think ...
0
votes
5answers
62 views

Use of Initialization List

I've learned what is an initialization list and how to use it but I still was wondering a thing. What is the difference, if there is, between initializing variables of the class by using an ...
8
votes
1answer
236 views

lifetime of a std::initializer_list return value

GCC's implementation destroys a std::initializer_list array returned from a function at the end of the return full-expression. Is this correct? Both test cases in this program show the destructors ...
0
votes
1answer
881 views

Initializer list not working in Visual Studio 2012 Update 2 CTP 4 (March)

After installing Visual Studio 2012 Update 2 CTP 4 (March), this code doesn't compile: vector<int> b = {1, 2, 3}; with the following error message: 'std::vector<_Ty>' : Types with a ...
36
votes
6answers
2k views

Why isn't std::initializer_list a language built-in?

Why isn't std::initializer_list a core-language built-in? It seems to me that it's quite an important feature of C++11 and yet it doesn't have its own reserved keyword (or something alike). Instead, ...
0
votes
3answers
99 views

C++ initializer_list iterator returning wrong value

I have a class defined like this: initializer_list<string> choices; initializer_list<string>::iterator current_choice; bool has_choices = false; MenuItem(Position position, string prompt) ...
0
votes
1answer
147 views

Initialize static const data members of a class into a class

Suppose we have this at a header file: class A { private: static const double x; public: A(double given_x); }; class B { private: static const double x; class A; public: ...
0
votes
1answer
99 views

boost-asio compilation failure (initialization list in a C++ class)?

I'm trying to compile this code #ifndef TCPIP_H #define TCPIP_H #include <cstdlib> #include <cstring> #include <iostream> #include <boost/asio.hpp> using ...
1
vote
2answers
239 views

std::unique_ptr deleted function, initializer_list - driven allocation

All, When I instantiate a widgets array using an initializer-list format, a naked pointer that points to a member-variable widget instance compiles but after change to std::unique_ptr<> gcc gives ...
7
votes
1answer
191 views

'Excess elements in struct initializer' error with C++11 uniform initialization

I am surprised by the following compiler error: template <typename T> struct A { A(T t): t_{t} {} T t_; }; struct S { }; int main() { A<S> s{S{}}; } The error is (with ...
2
votes
1answer
255 views

How to enable brace enclosed initializer lists for my own collection class?

Given this example class: template<typename T> class ExampleContainer { private: std::map<T, int> _objects; int _sum; public: ExampleContainer() : _objects(), _sum(0) ...
2
votes
1answer
102 views

Why can an object initialized with A{8} not be passed as an argument?

The following code was compiled with VC++ Nov 2012 CTP. #include <iostream> using namespace std; struct A { A(int n) { cout << n << endl; } }; void f(A) {} ...
0
votes
3answers
153 views

For constructors, how do I choose between variadic-templates vs std::initializer_list?

In the current state of c++11 (say gcc 4.7.2), how should I choose between using a variadic-template or a std::initializer_list when I need a constructor that can take variable arguments?
1
vote
2answers
143 views

C++11 initializer_list constructor marked “explicit”

Can I use explicit with an init-list ctor to make sure an expression like {a} doesn't result in unexpected implicit conversion? And another thought: should I be worried about it? Writing {a} is less ...
3
votes
1answer
220 views

C++ Supply initializer-list constructor for class template

I have a class template Templ with template parameter T, and the Templ class has a data member of type T, called obj. I wrote a variadic constructor template which forwards the arguments to obj's ...
0
votes
2answers
40 views

Initialiser list not in order

So I have made a class called Dictionary which inherits from a base IEnumerable and contains a member of type List. List has a const unsigned int& member that stores and exposes its item count. ...
3
votes
1answer
189 views

Does boost::container support C++11 initializer lists?

At the Boost.Container website we can read this: Boost.Container does not support initializer lists when constructing or assigning containers but it will support it for compilers with ...
2
votes
2answers
137 views

how to overload empty std::initializer_list?

Here I have series of overloaded functions that have as input either vector or initializer_list. And I want to handle the special case when client code inputs empty initializer_list. The problem is ...
1
vote
2answers
81 views

read data in initialization list

At class instantiation, I would like to read data from a file and process it into a number of class objects. What I did so far (and works well) is myData::myData(const std::string & file): ...
12
votes
1answer
300 views

call of overloaded <brace-enclosed initializer list> is ambiguous, how to deal with that?

I really don't understand this, I thought that compiler first executes what is in braces and then gives the result to the most appropriate function. Here it looks like it gives the function an ...
3
votes
2answers
1k views

Use std::initializer_list in Visual C++ Compiler November 2012 CTP

I want to use std::initializer_lists in Visual Studio 2012 like a guy in this example does. My operating system is Windows 8 x64. Therefore I lately installed the Visual C++ Compiler November 2012 ...
1
vote
0answers
286 views

Cannot open include file: 'initializer_list'

I want to compile The Forgotten Server (Tibia OTServer) on Microsoft Visual Studio 2012 (MSVC). But at the file: unordered_set.hpp I have this: #if !defined(BOOST_NO_0X_HDR_INITIALIZER_LIST) #include ...
7
votes
2answers
235 views

Are multiple mutations within initializer lists undefined behavior?

I am curious about initializer lists and sequence points. I read a while ago that the order of evaluation in initializer lists is left to right. If that is so, then there must be some kind of sequence ...
4
votes
3answers
119 views

C# Initializer list - when to use () operator after class name?

Sometimes an initializer list is specified after the class name without using the () operator: Cat cat = new Cat { Age = 10, Name = "Fluffy" } Other times it is specified after the () operator: ...

1 2 3 4