摘要: C++ int → string: int N = 100; to_string(N); string → int int N = "test"; stoi(N); JAVA int → string: int N = 100; N + ""/Integer.toString(N); string 阅读全文
posted @ 2020-12-26 21:14 acchris 阅读(185) 评论(0) 推荐(0)