C++STL_示例word格式 提供例程stringvectorlist等数据结构示例 #include #include usingnamespacestd; voidmain() { //用constchar*构造strText对象 stringstrText("Thisisatest"); //在strText的末尾附加一个字符串"!" strText.append("!"); //at()返回字符串在指定索引处的字符的引用 //如果给定的索引值超出了字符串的有效长度,则抛出out_of_range异常