int get() const; //这个是在类里的,这里省略了 int A::get() const { //todo 不能修改成员变量 }
int func(int &) { //todo } func(3); //这个是不行的。3不是变量,参数需要引用,会warning/error
C++ const
原文:https://www.cnblogs.com/bneglect/p/14660076.html