string 转 int,int 转 string时间:2021-05-16 03:33:38 string str="12345"; int b=atoi(str.c_str()); 可以配合atof,转为double char buf[10]; sprintf(buf, "%d", 100); string b = buf;