运算符 == 方法

bool operator ==(
  1. Object other
)

等号运算符。

所有 Object 的默认行为是,如果且仅当此对象和 other 是同一个对象时,返回 true。

覆盖此方法以指定类上的不同等价关系。重写的方法必须仍然是一个等价关系。也就是说,它必须

  • 总:它必须对所有参数返回布尔值。它不应该抛出异常。

  • 自反性:对于所有对象 oo == o 必须为 true。

  • 对称性:对于所有对象 o1o2o1 == o2o2 == o1 必须要么同时为 true,要么同时为 false。

  • 传递性:对于所有对象 o1o2o3,如果 o1 == o2o2 == o3 为 true,则 o1 == o3 也必须为 true。

该方法还应随时间保持一致,因此两个对象是否相等,只有在至少一个对象被修改时才会改变。

如果子类覆盖了等号运算符,它还应覆盖 hashCode 方法以保持一致性。

实现

bool operator ==(other) =>
    other is Rectangle &&
    left == other.left &&
    top == other.top &&
    width == other.width &&
    height == other.height;