Easiest way to convert int to string in C++

后端 未结 28 1748
甜味超标
甜味超标 2020-11-21 06:42

What is the easiest way to convert from int to equivalent string in C++. I am aware of two methods. Is there any easier way?

(1)



        
28条回答
  •  悲&欢浪女
    2020-11-21 07:31

    Not that I know of, in pure C++. But a little modification of what you mentioned

    string s = string(itoa(a));
    

    should work, and it's pretty short.

提交回复
热议问题