- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在下面的代码中,我定义了一个 unscoped enumeration 为 long long
类型。该程序在 Clang 上运行良好。
但是 GCC 编译器给出了一个歧义错误。
#include <iostream>
enum : long long { Var=5 };
void fun(long long ll)
{
std::cout << "long long : " << ll << std::endl;
}
void fun(int i)
{
std::cout << "int : " << i << std::endl;
}
int main()
{
fun(Var);
}
GCC 产生的错误:
main.cpp: In function 'int main()':
main.cpp:17:12: error: call of overloaded 'fun(<unnamed enum>)' is ambiguous
fun(Var);
^
main.cpp:5:6: note: candidate: void fun(long long int)
void fun(long long ll)
^~~
main.cpp:10:6: note: candidate: void fun(int)
void fun(int i)
^~~
为什么 GCC 编译器会给出歧义错误?
最佳答案
GCC 是错误的。
转换为其基础类型的无作用域枚举类型被限定为 integral promotion :
an unscoped enumeration type whose underlying type is fixed can be converted to its underlying type, ... (since C++11)
当 Var
转换为 int
时,它还需要一个 integral conversion (从 long long
到 int
)。 积分推广在overload resolution中的排名高于积分转化 :
2) Promotion: integral promotion, floating-point promotion
3) Conversion: integral conversion, floating-point conversion, floating-integral conversion, pointer conversion, pointer-to-member conversion, boolean conversion, user-defined conversion of a derived class to its base
那么 fun(long long ll)
应该更匹配。
关于c++ - 海湾合作委员会 : Unscoped enumeration type give an ambiguity error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46685191/
我是一名优秀的程序员,十分优秀!