获取继承类的默认hashCode实现。

huangapple go评论47阅读模式
英文:

Kotlin get default hashCode implementation for inherited class

问题

在Kotlin/JVM中,每个类在重写之前都具有默认的equals/hashCode实现。Equals方法使用===检查引用相等性,但hashCode是另一回事(我不知道它是什么)。

我想知道一旦被重写,是否可以恢复hashCode的默认实现,请考虑以下示例:

open class A {
    override fun hashCode(): Int = 1
}

class B : A() {
    override fun hashCode(): Int {
        // 我如何在这里获取默认实现?..
    }
}
英文:

Before overriding, each class in Kotlin/JVM has default equals/hashCode implementation. Equals is checking for reference equality with ===, but hashCode is something else (and I don't know what it is).

I wonder if I can get the default implementation of hashCode back once overriden, consider this example:

open class A {
    override fun hashCode(): Int = 1
}

class B : A() {
    override fun hashCode(): Int {
        // how can I get the default implementation here?..
    }
}

答案1

得分: 6

你无法访问super.super方法,但JVM实际上提供了一种获取原始哈希码值的方法:

class B : A() {
    override fun hashCode(): Int = System.identityHashCode(this)
}
英文:

You can't access to super.super methods, but the JVM actually provides a method to get the original hash code value:

class B : A() {
    override fun hashCode(): Int = System.identityHashCode(this)
}

huangapple
  • 本文由 发表于 2023年5月22日 23:02:07
  • 转载请务必保留本文链接:https://go.coder-hub.com/76307508.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定