c++ - 当类中存在一个与某个常成员函数同名的成员函数,那当使用普通对象调用此函数会发生什么?
大家讲道理
大家讲道理 2017-04-17 14:56:29
0
1
510
大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(1)
迷茫

There is no particularly good way. You can call a const member function through a temporary const reference.

int main() {
    A a;
    const A& b = a;
    b.getI();
}
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template