El metodo哈希码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了El metodo哈希码相关的知识,希望对你有一定的参考价值。

metodo para generar hashcodes
  1. int hashCode = 0;
  2.  
  3. @Override
  4. public int hashCode() {
  5. if (this.hashCode == 0) {
  6. return genericHash(this.id_otro_responsable,getId_persona());
  7. }
  8. return id_otro_responsable;
  9. }
  10.  
  11. public static int genericHash(int... fieldHashes) {
  12. int result = 17;
  13. for (int hash : fieldHashes) {
  14. result = 37 * result + hash;
  15. }
  16. return result;
  17. }

以上是关于El metodo哈希码的主要内容,如果未能解决你的问题,请参考以下文章

Java 中哈希码的说明

URL片段的最大长度(哈希)

URL的PHP​​和哈希/片段部分

JavaScript笔试题(js高级代码片段)

对象的哈希代码

快速简单的哈希码组合