什么是C++中的运算符AUTO?运算符、AUTO

2023-09-03 12:16:48 作者:▄ 灵魂深处一朵妩媚花

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中引入的。

C语言中, 是赋值运算符吗

占位符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
};