Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 220 Bytes

const-member-function.md

File metadata and controls

13 lines (10 loc) · 220 Bytes

Const Member Function

Back{: .button}

In a const member function this is const, and cannot be altered

class A {
  public
  A() {}
  void test() const; // const member function
}