我使用itoa函数(在Visual Studio上完美工作),编译器抱怨itoa未声明.
我包括< stdio.h>< stdlib.h>< iostream>这没有帮助.
此功能未在ANSI-C中定义,不是C的一部分,但由某些编译器支持.
因此,我强烈建议您不要使用它.但是,您可以使用stringstream如下实现这一点:
stringstream ss; ss << myInt; string myString = ss.str();