基本介紹
- 中文名:
- 外文名:
- 所屬學科:c++
//示例代碼
#include<initializer_list> //頭檔案
void error_msg(initializer_list<string> str) //可變參數,所有參數類型一致
{
for(auto beg = str.begin(); beg != str.end(); ++beg)
cout << *beg << " ";
cout << endl;
}
//調用
error_msg({"hello","error",error}); //error為string類型
error_msg({"hello2",well}); //well為string類型