c++怎么把int 和string 互转

2024-12-03 23:23:54
推荐回答(1个)
回答1:

强制类型转换,int转为string为如下示例
string a;
(int)a;
string转为int为如下示例
int b;
(string)b;
不知是否满意,应该是这样吧