摘要: 1. string转int类型 采用标准库cstdlib中atoi函数,<cstdlib>是C++里面的一个常用函数库 #include<cstdlib> string str = "55"; int tmp = std::atoi(str.c_str()); 2.内置类型转string 比如:in 阅读全文
posted @ 2021-08-23 11:31 USTC丶ZCC 阅读(517) 评论(0) 推荐(0) 编辑