摘要: 1. 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 阅读(14) 评论(0) 推荐(0) 编辑