摘要:#include #include #include #include using namespace std;typedef struct{ string str1; string str2; string str3;}TASK_INFO_STRU;bool findx(TASK_INFO_STRU &task){ return task.str2 == "task_two";}int main(){ vector task_vector; vector::iterator iter; TASK_INFO_STRU task; task.str...
阅读全文