In a Code::Blocks v13.12
project I have a class called Drawable
which has a floating point member variable called rotation
.
I noticed that explicitly declaring rotation
inside Drawable
's default constructor would trigger the following warning:
'Drawable::rotation' should be initialized in the member initialization list [-Weffc++]
However, explicitly declaring rotation
alongside its definition doesn't do this.
What I want to know is, why does this:
Drawable() {
rotation = 0.f;
}
Give me a member initialization warning, while this:
class Drawable
{
...
float rotation = 0.f;
...
}
And this:
Drawable() : rotation(0.f) {}
Compile without complaint?
The -Weffc++ warning are described as follows:
The warning you are seeing is covered in Item 4: Make sure that objects are initialized before they’re used of Effective C++ 3rd edition which says (paraphrased):
and:
and (emphasis my wording):
In C++11 in class member initializers (which also avoids this warning) can simplify initialization if most of your member variables have default values, the one disadvantage is that until C++14 this make your class a non-aggregate.