El metodo哈希码
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了El metodo哈希码相关的知识,希望对你有一定的参考价值。
metodo para generar hashcodes
int hashCode = 0; @Override public int hashCode() { if (this.hashCode == 0) { return genericHash(this.id_otro_responsable,getId_persona()); } return id_otro_responsable; } public static int genericHash(int... fieldHashes) { int result = 17; for (int hash : fieldHashes) { result = 37 * result + hash; } return result; }
以上是关于El metodo哈希码的主要内容,如果未能解决你的问题,请参考以下文章