一个类中有如下两个函数:int *getNum() {static int *p1 = new int; *p1 = 100; return p1;}int *getNum() const {static int *p2 = new int; *p2 = 200; return p2;}为什么没有报函数同名错误,去掉 const 后会报 不能重载错误。而且执行getNum 函数也只会执行第一个getNum, ?
1 回答
当年话下
TA贡献1890条经验 获得超9个赞
void print() const {} 和 void print() {} 是重载函数,假如对象为const,则调用void print () const成员函数,如果为非const,则调用void print() ;
- 1 回答
- 0 关注
- 582 浏览
添加回答
举报
0/150
提交
取消