知识点

1 std::vector<std::string> 作为返回参数

void GetConfigState(std::vector<std::string>&vtTemp)

2 对于std::vector<std::string>取值操作

std::vector<std::string>::iterator theIterator;

for( theIterator = vtTemp.begin(); theIterator != vtTemp.end(); theIterator++ )

cout<<theIterator->c_str()<<endl;//这样取值

3 不能直接进行容器间赋值