为什么这个重载三个整数类型的函数无法编译?
定义一个重载三种大小的整数的函数的尝试失败了。为什么?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的编译器/代码认为 byte 和 unsigned int 是同一件事......
Your compiler/code thinks that byte and unsigned int are the same thing...
重载函数的不同之处仅在于其参数数量和/或类型,而不是返回类型。所以,这是三个不同的功能。
Overloaded functions can differ only by their parameters count and/or types and not the return type. So, these are three different functions.