比较两个MapEntry是否相等。
参数:
返回值:
true
false
bool equalTo(MapEntry<K, V> other) { return this.key == other.key && this.value == other.value; }