visual c++: convert int into string pointer

前端 未结 10 2141
既然无缘
既然无缘 2021-01-22 09:01

how to convert integer into string pointer in visual c++?

10条回答
  •  感情败类
    2021-01-22 09:36

    I think the easiest one would be:

    int i;
    String s=i.toString();
    // It is about Visual C++
    

提交回复
热议问题