I guess I am unable to understand why this is not working. I always thought that I can use 'this
' pointer inside the constructor, but I never knew that I cannot use 'this
' in the initialization list.
#include <iostream>
class A {
public:
int a;
int b;
A(int a = 0, int b = 0) : this->a(a), this->b(b) { }
void print() {
std::cout << a << ", " << b << std::endl;
}
};
int main() {
A a;
a.print();
}
I am interested to know the details related to it.
this->a
is grammatically invalid because it is a member-access expression, but only an identifier is allowed there (or a type specifier, for base classes).From the C++ standard, [class.base.init],