/QingTingFanBianYi/src/com/alibaba/fastjson/util/IdentityHashMap.java

https://gitlab.com/qt-prometheus/qt-prometheus · Java · 78 lines · 65 code · 9 blank · 4 comment · 11 complexity · 948444c815cd22cf1ab994873183a4bc MD5 · raw file

  1. package com.alibaba.fastjson.util;
  2. public class IdentityHashMap<K, V>
  3. {
  4. public static final int DEFAULT_TABLE_SIZE = 1024;
  5. private final Entry<K, V>[] buckets;
  6. private final int indexMask;
  7. public IdentityHashMap()
  8. {
  9. this(1024);
  10. }
  11. public IdentityHashMap(int paramInt)
  12. {
  13. this.indexMask = (paramInt - 1);
  14. this.buckets = new Entry[paramInt];
  15. }
  16. public final V get(K paramK)
  17. {
  18. int i = System.identityHashCode(paramK);
  19. int j = this.indexMask;
  20. for (Entry localEntry = this.buckets[(i & j)]; localEntry != null; localEntry = localEntry.next)
  21. if (paramK == localEntry.key)
  22. return localEntry.value;
  23. return null;
  24. }
  25. public boolean put(K paramK, V paramV)
  26. {
  27. int i = System.identityHashCode(paramK);
  28. int j = i & this.indexMask;
  29. for (Entry localEntry = this.buckets[j]; localEntry != null; localEntry = localEntry.next)
  30. if (paramK == localEntry.key)
  31. {
  32. localEntry.value = paramV;
  33. return true;
  34. }
  35. paramK = new Entry(paramK, paramV, i, this.buckets[j]);
  36. this.buckets[j] = paramK;
  37. return false;
  38. }
  39. public int size()
  40. {
  41. int j = 0;
  42. int i = 0;
  43. while (i < this.buckets.length)
  44. {
  45. for (Entry localEntry = this.buckets[i]; localEntry != null; localEntry = localEntry.next)
  46. j += 1;
  47. i += 1;
  48. }
  49. return j;
  50. }
  51. protected static final class Entry<K, V>
  52. {
  53. public final int hashCode;
  54. public final K key;
  55. public final Entry<K, V> next;
  56. public V value;
  57. public Entry(K paramK, V paramV, int paramInt, Entry<K, V> paramEntry)
  58. {
  59. this.key = paramK;
  60. this.value = paramV;
  61. this.next = paramEntry;
  62. this.hashCode = paramInt;
  63. }
  64. }
  65. }
  66. /* Location: C:\Users\User\dex2jar-2.0\dex\qting\classes-dex2jar.jar
  67. * Qualified Name: com.alibaba.fastjson.util.IdentityHashMap
  68. * JD-Core Version: 0.6.2
  69. */