0

代码先行:

template <typename T>
void do_sth(int count)
{
    char str_count[10];
    //...
    itoa(count, str_count, 10);
    //...
}

但我得到了一些像这样的编译错误:

error: there are no arguments to ‘itoa’ that depend on a template parameter, so a declaration of ‘itoa’ must be available
error: ‘itoa’ was not declared in this scope

但我确实包括在内<cstdlib>。谁能告诉我怎么了?

4

2 回答 2

2

它是一个非标准函数,通常定义在stdlib.h(但它不受 ANSI-C 保证,请参见下面的注释)。

#include<stdlib.h>

然后使用itoa()

注意cstdlib没有这个功能。所以包括cstdlib不会有帮助。

另请注意,此在线文档说,

可移植性

此函数未在 ANSI-C 中定义,也不是 C++ 的一部分,但受某些编译器支持。

如果它在标头中定义,那么在 C++ 中,如果您必须将其用作:

extern "C" 
{
    //avoid name-mangling!
    char *  itoa ( int value, char * str, int base );
}

//then use it
char *output = itoa(/*...params*...*/);

便携式解决方案

您可以使用sprintf将整数转换为字符串:

sprintf(str,"%d",value);// converts to decimal base.
sprintf(str,"%x",value);// converts to hexadecimal base.
sprintf(str,"%o",value);// converts to octal base.
于 2011-09-18T12:22:37.077 回答
2

itoa 似乎是一个非标准功能,并非在所有平台上都可用。请改用 snprintf(或类型安全的 std::stringstream)。

于 2011-09-18T12:28:49.217 回答