1. 容器对象的构造和赋值 1.1 构造 C c; C c; //默认构造函数 C c1(c2) C c1=c2; C c{a,b,c,…} C c={a,b,c,…} C c(b,e)//eg. list slist(svec.begin(),svec.end()); C seq(n) // n个值初始化,只适用于顺序容器,必须给出默认构造函数 seq包含n个元素,这些元素进行了值初始化;
1. 测试代码 string temp[] = { "one", "two", "three" };StrVec sv(begin(temp), end(temp));// run the string empty funciton on the first element in svif (!sv[0].empty())sv[0] = "None"; // assign a new v