進階篇_vector容器

Pop_Rain發表於2017-05-03

vector與array區別:前者動態變化,後者固定(一年12月,一週7天比較好)

array<string, 12> arrmonths;
arrmonths[0] = "jan";	//直接類似陣列訪問 
for(array<stirng, 12>::iterator it; it!=arrmonths.end(); ++it)//迭代器訪問

vector常用函式



相關文章