我不会让操作员超载

时间:2017-03-26 11:21:51

标签: c++ operator-overloading

struct nodo{
    int v,k,dist;

    nodo(){
    }

    nodo(int _v, int _k, int _dist){
        v=_v;
        k=_k;
        dist=_dist;
    }

    bool operator < (nodo X) const{
        return dist>X.dist;
    }
}

我正在尝试理解这段代码。但我没有得到bool运营商的部分。

“return dist&gt; X.dist”是什么意思? 如果dist大于X.dist,返回true?

1 个答案:

答案 0 :(得分:1)

  

“return dist&gt; X.dist”是什么意思?如果dist大于X.dist,返回true?

你是对的。

运算符与普通成员函数没有区别。编译器只在找到该运算符时执行该函数。

您可以尝试输入打印语句,看看会发生什么

bool operator < (nodo X) const{
    std::cout << "Operator < called" << std::endl;
    return dist < X.dist; // I changed the sign because it looks more natural
}

// ...

int main() {
    nodo smallnode(1,2,3);
    nodo bignode(4,5,6);
    std::cout << "First node Vs Second Node" << std::endl;
    if (smallnode < bignode)
       std::cout << "It's smaller!" << std::endl;
    else
       std::cout << "It's bigger!" << std::endl;
}