Tagged Questions
The initializer-list tag has no wiki summary.
18
votes
2answers
463 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
321 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
158 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
579 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
130 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
286 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
98 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
130 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
158 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
151 views
C++11 library features dependent on compiler specific proxys
It's been brought to my attention by trial and error that there are certian C++11 features that depend on some sort of compiler magic (TM). I've been messing around with implementing my own standard ...
6
votes
1answer
146 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
226 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
861 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
190 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
190 views
How to initialize a container of noncopyable with initializer list?
I use gcc 4.6.1 to compile this code
int main()
{
std::vector<std::unique_ptr<int>> vec({
std::unique_ptr<int>(new int(0)),
...
5
votes
1answer
367 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
297 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
1k 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
532 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
5answers
212 views
Array of Arrays in C#
I need to know how to initialize array of arrays in C#..
I know that there exist multidimensional array, but I think I do not need that in my case!
I tried this code.. but could not know how to ...
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
113 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
452 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
2answers
104 views
How to “reduce typing to create C++ types” with Uniform Initializers?
I have played a lot the new Uniform Initialization with {}. Like this:
vector<int> x = {1,2,3,4};
map<int,string> getMap() {
return { {1,"hello"}, {2,"you"} };
}
It is undisputed ...
3
votes
3answers
79 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
1answer
119 views
C++0x: Overload Resolution
In the Standard-Text there is an example in 8.5.4 (3) List-initialization [dcl.init.list]
struct S {
S(std::initializer_list<double>); // #1
S(const std::string&); // ...
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
155 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
151 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
2answers
123 views
C++0x: Why forbid “braced-init-list” in “operator[]”?
I just noticed, that in N3291 a change is marked (5.2.1 Subscripting [expr.sub]):
Before, it was ok to overload operator[] with the new braced-init-list:
struct X {
Z ...
2
votes
3answers
205 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
72 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);
...