我如何将overload()运算符作为前缀?

时间:2014-05-09 13:39:57

标签: c++

我想在两个与距离相关的类之间实现显式类型转换。我需要重载()作为前缀来使用它,如:

class1=(class2)class2_object;

1 个答案:

答案 0 :(得分:5)

请看user-defined conversion

示例:

struct Y {};

struct X {
     operator Y() const { return ...; } 
};

int main() {
    X x;
    Y y1 = static_cast<Y>(x); // uses conversion operator
    Y y2 = (Y)x; // also possible, but don't use C-style casts in C++!
    Y y3 = x; // even this is possible...
}

使用C ++ 11,您可以使用关键字explicit来避免意外隐式转换(即Y y3 = x;):

     explicit operator Y() const { return ...; }