-5
繼承人我的代碼的問題是,當我通過函數試圖在全球向量寫前衛拋出異常寫作全球矢量<int>
//global elements
vector <int> par;
int t = 0;
void fun(int V)
{
for(int i = 0; i < V ; ++i)
par.at(i) = i ;
}
int main()
{
int V;
cin >> V;
par.reserve(V);
for(int i = 0 ; i < V ; ++i)
par[i] = i;
//following code fails to print anything??
for(auto it : disc) cout<<it<<' '<<"hello";
//this throws exception
fun(V);
}
你的載入是空的。你至少需要填寫V元素。這與矢量是全球性無關。 – juanchopanza
什麼是「光盤」? –
其實我寫了光盤代替par的地方,對不起我的壞.. – user3872868