Const Member Function
Const Member Function
In a const member function this
is const
, and cannot be altered
class A {
public
A() {}
void test() const; // const member function
}
In a const member function this
is const
, and cannot be altered
class A {
public
A() {}
void test() const; // const member function
}