摘要:
#include #include #include #include using namespace std;//字符串分割函数void StrSplit(string str,vector *strvec){ string strtemp; string::size_type pos1, pos2; pos2 = str.find(','); pos1 = 0; while (string::npos != pos2) { (*strvec).push_ba... 阅读全文