哈希映射可序列化性

2022-09-01 06:47:49

HashMap实现了可序列化的接口;所以它可以被序列化。我已经查看了HashMap的实现,并且Entry[]表被标记为瞬态。由于 Entry[] 表是存储 Map 全部内容的表,如果无法序列化,则在反序列化期间如何构造 Map


答案 1

如果您查看源代码,您会发现它不依赖于默认的序列化机制,而是手动写出所有条目(作为键和值的交替流):

/**
  * Save the state of the <tt>HashMap</tt> instance to a stream (i.e.,
  * serialize it)
  *
  * @serialData The <i>capacity</i> of the HashMap (the length of the
  *             bucket array) is emitted (int), followed by the
  *             <i>size</i> (an int, the number of key-value
  *             mappings), followed by the key (Object) and value (Object)
  *             for each key-value mapping.  The key-value mappings are
  *             emitted in no particular order.
  */
      private void writeObject(java.io.ObjectOutputStream s)
             throws IOException
         {
             Iterator<Map.Entry<K,V>> i =
                 (size > 0) ? entrySet0().iterator() : null;

            // Write out the threshold, loadfactor, and any hidden stuff
            s.defaultWriteObject();

            // Write out number of buckets
            s.writeInt(table.length);

            // Write out size (number of Mappings)
            s.writeInt(size);

            // Write out keys and values (alternating)
            if (i != null) {
                while (i.hasNext()) {
                    Map.Entry<K,V> e = i.next();
                    s.writeObject(e.getKey());
                    s.writeObject(e.getValue());
                }
            }
        }

这比数组更紧凑,数组可以包含许多空条目和链接链以及 Map$Entry 包装器的开销。

请注意,它仍然调用“简单”字段。为了使它正常工作,它必须将其他所有内容标记为 .defaultWriteObjecttransient


答案 2

HashMap通过使用 和 方法来处理自己的序列化。writeObjectreadObject