hi everyone, i m messed up with intializer lis.
please help me by solving these questions.
How does compiler impliments intializer lits?
How intializer lits improve performence?
When it is must to use intializer lits?
When intializer lits must not be used?
What is wrong with this pice of code..
class A {
private:
int x, y;
public:
A():y(0), x(y)
{
}
}