类 SymbolTable.Entry

java.lang.Object
cn.taketoday.bytecode.Symbol
cn.taketoday.bytecode.SymbolTable.Entry
封闭类:
SymbolTable

private static class SymbolTable.Entry extends Symbol
An entry of a SymbolTable. This concrete and private subclass of Symbol adds two fields which are only used inside SymbolTable, to implement hash sets of symbols (in order to avoid duplicate symbols). See SymbolTable.entries.
作者:
Eric Bruneton, Harry Yang
  • 字段详细资料

    • hashCode

      public final int hashCode
      The hash code of this entry.
    • next

      public SymbolTable.Entry next
      Another entry (and so on recursively) having the same hash code (modulo the size of SymbolTable.entries) as this one.
  • 构造器详细资料

    • Entry

      Entry(int index, int tag, String owner, String name, String value, long data, int hashCode)
    • Entry

      Entry(int index, int tag, String value, int hashCode)
    • Entry

      Entry(int index, int tag, String value, long data, int hashCode)
    • Entry

      Entry(int index, int tag, String name, String value, int hashCode)
    • Entry

      Entry(int index, int tag, long data, int hashCode)