initialize object in initializer list c++ code example
Example: initializer list c++
class Example {
public:
int m_A, m_B, m_C;
Example(int a, int b, int c);
};
Example::Example(int a, int b, int c):
// This is an initializer list
m_A(a),
m_B(b),
m_C(c)
{ /* Constructor code */ }