模板函数中的 itoa

发布于 2024-12-05 07:53:12 字数 450 浏览 0 评论 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

但我确实包含了 。 谁能告诉我出了什么问题?

Code goes first:

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

but I got some compile-error like this:

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

But I indeed included <cstdlib>.
Who can tell me what's wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陪你搞怪i 2024-12-12 07:53:12

itoa 似乎是一个非标准函数,并非在所有平台上都可用。使用 snprintf 代替(或类型安全的 std::stringstream)。

It appears that itoa is a non-standard function and not available on all platforms. Use snprintf instead (or type-safe std::stringstream).

雪若未夕 2024-12-12 07:53:12

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

#include<stdlib.h>

然后使用 itoa()

注意,cstdlib 没有这个函数。因此,包含 cstdlib 没有帮助。

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

可移植性

该函数未在 ANSI-C 中定义,也不是 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.

It is a non-standard function, usually defined in stdlib.h (but it is not gauranteed by ANSI-C, see the note below).

#include<stdlib.h>

then use itoa()

Note that cstdlib doesn't have this function. So including cstdlib wouldn't help.

Also note that this online doc says,

Portability

This function is not defined in ANSI-C and is not part of
C++, but is supported by some compilers.

If it's defined in the header, then in C++, if you've to use it as:

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

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

A portable solution

You can use sprintf to convert the integer into string as:

sprintf(str,"%d",value);// converts to decimal base.
sprintf(str,"%x",value);// converts to hexadecimal base.
sprintf(str,"%o",value);// converts to octal base.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文