gpt4 book ai didi

Dart:将派生类的比较运算符委托(delegate)给基类的比较运算符

转载 作者:行者123 更新时间:2023-12-05 00:28:04 25 4
gpt4 key购买 nike

我想重载 Dart 中的比较运算符(==)来比较结构。现在,当我已经重载了基类的比较运算符并希望重用它时,我不确定如何为派生类执行此操作。

假设我有一个像这样的基类:

class Base
{
int _a;
String _b;

bool operator ==(Base other)
{
if (identical(other, this)) return true;
if (_a != other._a) return false;
if (_b != other._b) return false;
return true;
}
}

然后我声明我的派生类添加了额外的字段并且还想重载运算符==。我只想比较派生类中的附加字段,并将 Base 字段的比较委托(delegate)给 Base 类。在其他编程语言中,我可以执行 Base::operator==(other) 之类的操作或 super.equals(other) ,但在 Dart 中我不知道什么是最好的方法。
class Derived extends Base
{
int _c; // additional field

bool operator ==(Derived other)
{
if (identical(other, this)) return true;
if (_c != other._c) return false; // Comparison of new field

// The following approach gives the compiler error:
// Equality expression cannot be operand of another equality expression.
if (!(super.==(other))) return false;

// The following produces "Unnecessary cast" warnings
// It also only recursively calls the Derived operator
if ((this as Base) != (other as Base)) return false;

return true;
}
}

我想我能做的是:
  • 比较派生类中基类的所有字段:如果基类 get 发生更改,则非常容易出错,并且当基类和派生类位于不同的包中时也不起作用。
  • 声明 equals功能与当前 operator == 相同的逻辑在里面,调用super.equals()比较基类并委托(delegate) operator== 的所有调用到equals功能。然而,实现 equals 看起来并不太吸引人。和 operator == .

  • 那么这个问题的最佳或推荐解决方案是什么?

    最佳答案

    好的,经过一些进一步的实验,我自己想通了。
    它只是调用:

    super==(other)

    我试过 super.operator==(other)super.==(other)以前,但没想到简单的 super==(other)足够了。

    对于上面给出的示例,正​​确的运算符是:
    bool operator ==(Derived other)
    {
    if (identical(other, this)) return true;
    if (_c != other._c) return false;
    if (!(super==(other))) return false;
    return true;
    }

    关于Dart:将派生类的比较运算符委托(delegate)给基类的比较运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19478291/

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