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

What is #39;operator auto#39; in C++?(什么是C++中的运算符AUTO?)

本文介绍了什么是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
};

这篇关于什么是C++中的运算符AUTO?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:什么是C++中的运算符AUTO?

基础教程推荐