在 class 文件中使用用户定义的 class 向量
Using a user defined class vector inside the class file
我有一个名为 Account 的 class,参数如下:
Account::Account(string ibanCode, string paramOwner, double amount) {}
我在主函数中创建了一个包含 class 个帐户的向量:
accs.push_back(Account(fullName, iban, value));
我想编写一个函数,通过一个名为 displayAll() 的 class 成员函数打印我的向量中的所有帐户值,到目前为止我试过这个:
void Account::displayAll()
{
for (int i = 0; i < accs.size(); i++)
{
cout << accs[i].displayBalance() << endl;;
}
}
我想把它写在 class 文件里。你有什么建议吗?
我认为让它成为成员会非常复杂,最好的选择应该是使用可以访问参数的普通函数。
#include <iostream>
#include <vector>
using namespace std;
struct Account {
Account (string ibanCode, string paramOwner, double amount) : _amount(amount), _ibanCode(ibanCode), _paramOwner(paramOwner) {};
string _ibanCode;
string _paramOwner;
double _amount;
};
void DisplayAll (const vector<Account>& Accs) {
for (const auto& Acc : Accs) {
cout << Acc._ibanCode<<' '<<Acc._paramOwner<<' '<< Acc._amount<<'\n';
}
return;
}
int main () {
vector<Account> Accs;
Accs.push_back(Account("SomeCode", "SomeOwner", 2.0));
Accs.push_back(Account("SomeOtherCode", "SomeOtherOwner", 3000.42));
DisplayAll(Accs);
}
为了避免使答案过于复杂,我制作了一个结构,但您可以将 DisplayAll
函数设为 class 的 friend
或制作一些吸气剂。
我有一个名为 Account 的 class,参数如下:
Account::Account(string ibanCode, string paramOwner, double amount) {}
我在主函数中创建了一个包含 class 个帐户的向量:
accs.push_back(Account(fullName, iban, value));
我想编写一个函数,通过一个名为 displayAll() 的 class 成员函数打印我的向量中的所有帐户值,到目前为止我试过这个:
void Account::displayAll()
{
for (int i = 0; i < accs.size(); i++)
{
cout << accs[i].displayBalance() << endl;;
}
}
我想把它写在 class 文件里。你有什么建议吗?
我认为让它成为成员会非常复杂,最好的选择应该是使用可以访问参数的普通函数。
#include <iostream>
#include <vector>
using namespace std;
struct Account {
Account (string ibanCode, string paramOwner, double amount) : _amount(amount), _ibanCode(ibanCode), _paramOwner(paramOwner) {};
string _ibanCode;
string _paramOwner;
double _amount;
};
void DisplayAll (const vector<Account>& Accs) {
for (const auto& Acc : Accs) {
cout << Acc._ibanCode<<' '<<Acc._paramOwner<<' '<< Acc._amount<<'\n';
}
return;
}
int main () {
vector<Account> Accs;
Accs.push_back(Account("SomeCode", "SomeOwner", 2.0));
Accs.push_back(Account("SomeOtherCode", "SomeOtherOwner", 3000.42));
DisplayAll(Accs);
}
为了避免使答案过于复杂,我制作了一个结构,但您可以将 DisplayAll
函数设为 class 的 friend
或制作一些吸气剂。