If you want to prevent a method from changing the attribute of its class, what should be its signature ?
const void method();
void const method();
void method() const;
void method(const) ;