首頁 > 問答 > 主體
迷茫2017-04-17 14:58:29
沒什麼特別好的方法,你可以透過一個暫時的const引用來呼叫到帶有const的成員函數。
int main() { A a; const A& b = a; b.getI(); }