摘要: string 和 int 相互转换: int 转 string:string str = to_string(number); string 转 int:int number = stoi(str.c_str()); 使用时要注意stoi函数中参数str不能为空字符串,字符串也不能过大,需要能转换为 阅读全文
posted @ 2023-02-04 19:18 SanFranciscoo 阅读(17) 评论(0) 推荐(0) 编辑