口座から残高を取り、与えられた金額を差し引くシステムを実装しようとしています。これが私の方法です。
transaction withdraw(double amount, double ID){
Account Temp(NULL,NULL,NULL,NULL,NULL);
Temp = Llist.search(ID); //Returns an Account Objet
Temp.setBalance(Temp.getBalance - amount); //Here is the error, '-' illegal, left operand has type 'double (_thisCall Account::* )(void)'
string t = "Withdraw";
transaction trans(t, amount, ID, name);
return trans;
}
'Temp.getbalance'から'a'を正しく減算する行にどのオペランドを入れるかを尋ねています