operator == 抽象方法

bool operator ==(
  1. Object other
)
override

判断此镜像是否等于 other

等价条件为

  1. other 是同种类的镜像,且
  2. simpleName == other.simpleNameowner == other.owner

实现

bool operator ==(Object other);