If I want to initialize a vector inside a class, for example:
class A {
private:
static std::vector<double> label_map;
};
If I want to initialize this static vector, what is the best way to do? I've read in some other posts saying that starting from GCC 4.4, it supports new features in C++0x and we can directly use
static std::vector<double> label_map = {1, 2, 3, 4};
However seems it doesn't work for me.
-std=c++0xto the command line? – Kerrek SB Dec 16 '11 at 0:24label_map { 1, 2, 3, 4 }thanlabel_map = {1, 2, 3, 4}because the former initialises the vector with1, 2, 3, 4while the latter creates a temp vector and uses the vector copy constructor to makelabel_map– Seth Carnegie Dec 16 '11 at 0:26constand of integral type, and you never take the address of it. – Seth Carnegie Dec 16 '11 at 0:37