我正在嘗試編寫一個函數,該函數從listAccounts中刪除向量元素,具體取決於該向量元素的account_name。我寫了這個: void Account::remove_account(string name) {
auto iter = listAccounts.begin();
for (; iter != listAccounts.end(); iter++)
我想創建一個while循環,只要從文件中取出的字符串不是空的就運行。我需要用空格分隔字符串並保存信息以供將來使用,所以我將子字符串放入數組中,然後將其從實際數組中移除。但是,當我運行該程序時,我不斷收到錯誤消息,或者只是打印出空白區域。 I added a picture of the file I'm using and of the error message I'm getting fstr