gpt4 book ai didi

c++ - 是否可以动态绑定(bind) operator>?

转载 作者:行者123 更新时间:2023-11-30 03:55:10 25 4
gpt4 key购买 nike

动态绑定(bind)要求虚函数在基类和它的派生类中应该有相同的参数列表。这让我想知道 operator> 是否可以动态绑定(bind)?下面的demo似乎证明不能。

#include <iostream>
using namespace std;
struct B
{
B(int b = 0):m_b(b){}
virtual bool operator>(const B& rhs)const {cout << "B::operator>" << endl;return m_b > rhs.m_b;}
int m_b;
};

struct D: public B
{
D(int b = 0, long d = 0):B(b),m_d(d){}
virtual bool operator>(const D& rhs)const {cout << "D::operator>" << endl; return m_d > rhs.m_d;}
long m_d;
};
int main()
{
D d1(0,0),d2(1,-1);
B& b1(d1),b2(d2);

cout << (b1 > b2) << endl;
cout << "------------" << endl;
cout << (d1 > d2) << endl;
return 0;
}

输出:

B::operator>
0
------------
D::operator>
1

最佳答案

virtual bool operator>(const D& rhs)const {
cout << "D::operator>" << endl;
return m_d > rhs.m_d;
}
virtual bool operator>(const B& rhs)const override final {
if(D const*=dynamic_cast<D const*>(&rhs))
return *this>*other;
return B::operator>(rhs);
}

解决了你的问题。它现在对两个参数进行双重分派(dispatch),如果它们都是 D,它会调用适当的重载。否则它依赖于 B 的版本。

在 C++ 中有很多方法可以进行双分派(dispatch),它们都必须手动完成。

关于c++ - 是否可以动态绑定(bind) operator>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29189203/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com