什么是C++中的运算符AUTO?
Clang和Visual Studio编译器(但不是GCC)允许编写如下代码:
struct A
{
operator auto() { return 0; }
};
int main()
{
A a;
a.operator auto();
}
什么是operator auto
?它是特定编译器的扩展还是标准语言功能?如果是,它是以什么语言标准(例如C++17)出现的?
解决方案
当auto
在user-defined conversion function中使用时,类型将通过返回类型演绎得到,即int
在此情况下(0
)。这是在C++14中引入的。
占位符AUTO可在转换类型-id中使用,表示 deduced return type:
struct X { operator int(); // OK operator auto() -> short; // error: trailing return type not part of syntax operator auto() const { return 10; } // OK: deduced return type };
相关文章