为什么这个重载三个整数类型的函数无法编译?

发布于 2024-12-05 19:12:15 字数 328 浏览 0 评论 0原文

定义一个重载三种大小的整数的函数的尝试失败了。为什么?

byte hack(byte x)
{
   return x+1;
}

unsigned short hack(unsigned short x)
{
   return x+2;
}

unsigned int hack(unsigned int x)
{
   return x+3;
}

编译器告诉我: zzz.cpp:98: 错误:重新定义“unsigned int hack(unsigned int)” zzz.cpp:88: 错误: 'byte hack(byte)' 先前在此处定义

This attempt to define a function overloaded for three sizes of integers fails. Why?

byte hack(byte x)
{
   return x+1;
}

unsigned short hack(unsigned short x)
{
   return x+2;
}

unsigned int hack(unsigned int x)
{
   return x+3;
}

The compiler tells me:
zzz.cpp:98: error: redefinition of ‘unsigned int hack(unsigned int)’
zzz.cpp:88: error: ‘byte hack(byte)’ previously defined here

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

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

发布评论

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

评论(2

情何以堪。 2024-12-12 19:12:15

您的编译器/代码认为 byteunsigned int 是同一件事......

Your compiler/code thinks that byte and unsigned int are the same thing...

只为一人 2024-12-12 19:12:15

重载函数的不同之处仅在于其参数数量和/或类型,而不是返回类型。所以,这是三个不同的功能。

Overloaded functions can differ only by their parameters count and/or types and not the return type. So, these are three different functions.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文