知識點
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 不能直接進行容器間賦值
