class AccountManager
{
private:
Account accountlist[100];
int *accountNumber;
Account* SuperVipAccount;
static int ManagerNumber;
public
int getManagerNumber() const;
};
要定義第二個const版本的函數,是否可以安全地執行此操作?它看起來像會有無限遞歸,因爲我想返回const,但我打算調用的另一個函數是非const。 它適用於g ++,但我擔心這是不安全的。 #include <iostream>
using namespace std;
class test {
public:
int* doSomething(int a) {