我新望到C++(而不是新的總體規劃)C++繞過載體
我試圖把這種getOption,錯誤消息,抱怨這個調用:
getOption(
"What do you want to do?",
std::vector<std::string>[
"Add a person",
"Delete a person",
"Print database information",
"Report average age",
"List all names",
"Exit"]);
不匹配下面的函數定義:
int getOption(std::string prompt, std::vector<std::string> choices)
我那麼搜索,但我真的不明白是怎麼回事,足以拿出,將匹配已回答的問題的關鍵字。
我在這裏丟失了什麼C++概念?
不要使用向量的方括號 – aaronman