代码优先:
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>
。
谁能告诉我出了什么问题?
答案 0 :(得分:2)
这是一个非标准函数,通常在stdlib.h
中定义(但它不受ANSI-C的保护,请参阅下面的注释)。
#include<stdlib.h>
然后使用itoa()
请注意cstdlib
没有此功能。所以包括cstdlib
也无济于事。
另请注意,this online doc说,
可移植性
此功能未在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.
答案 1 :(得分:2)
似乎itoa是非标准功能,并非在所有平台上都可用。请改用snprintf(或类型安全的std :: stringstream)。