recherche

Maison  >  Questions et réponses  >  le corps du texte

c++ - 当类中存在一个与某个常成员函数同名的成员函数,那当使用普通对象调用此函数会发生什么?

大家讲道理大家讲道理2772 Il y a quelques jours514

répondre à tous(1)je répondrai

  • 迷茫

    迷茫2017-04-17 14:58:29

    没什么特别好的方法,你可以通过一个临时的const引用来调用到带有const的成员函数。

    int main() {
        A a;
        const A& b = a;
        b.getI();
    }

    répondre
    0
  • Annulerrépondre