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) {
// ...
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 ...
0
votes
4answers
81 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";
...