に該当する機能私はこのコードを持っている:C++参照渡し:エラー:コール
bool Port::add_app_from_wlist(App* a){
stringstream namesurn;
string name, surname;
namesurn << a->get_name();
namesurn >> name >> surname;
return add_application(a->get_id(),name,surname,a->arrived_at_port_by(),a->arrived_by(),a->is_luxury_class());
}
を、私はこのエラーを取得する:
air_classes.cpp:153: error: no matching function for call to `Port::add_application(int, std::string&, std::string&, time_t, time_t, bool)'
air_classes.cpp:98: note: candidates are: bool Port::add_application(int, std::string, std::string, std::string, time_t, time_t, bool)
この文字列&はでどこから来るか、私は理解していませんエラー - どのように私はそれを修正することができます - 助けてください。
私は今私のアカウントを削除しなければならないと思う:恥ずかしい: –
@user:これは何度も間違いを覚えている。目のペアは確かに1つより優れています。 – Vlad