Heim  >  Fragen und Antworten  >  Hauptteil

操作符重载 - c++ 模板类的操作符 () 重载问题

有代码:

template<typename T>
clase AClass
{
    T operator ()() const;
    operator T() const;
}

请问operator T() 是个什么意思??

PHPzPHPz2764 Tage vor573

Antworte allen(1)Ich werde antworten

  • 迷茫

    迷茫2017-04-17 13:17:03

    自定义类型转换

    Antwort
    0
  • StornierenAntwort