Java 提供了用於管理鍵值對的Map 資料結構,可讓您為每個條目定義特定類型。但是,當您需要一個值對集合(其中每個元素由兩個不同類型的值組成)時,Map 可能不是理想的解決方案。
為了解決這個問題,Java 提供了一個替代方案:AbstractMap .SimpleEntry 類別。此類別可讓您建立包含一對值的條目,其中每個值可以有自己的類型。
要使用AbstractMap.SimpleEntry,請依照下列步驟操作:
// Create a list of SimpleEntry pairs List<Map.Entry<String, Integer>> pairList = new ArrayList<>(); // Add some pairs to the list pairList.add(new AbstractMap.SimpleEntry<>("Not Unique Key 1", 1)); pairList.add(new AbstractMap.SimpleEntry<>("Not Unique Key 2", 2));
例如:
// Create a TupleList class extending ArrayList public class TupleList<E> extends ArrayList<E> { public TupleList() {} // Exposed method for creating and adding SimpleEntry pairs public void of(Object... args) { if (args.length % 2 != 0) { throw new IllegalArgumentException("Number of arguments must be even."); } for (int i = 0; i < args.length; i += 2) { add(new SimpleEntry<>(args[i], args[i + 1])); } } } // Usage TupleList<Map.Entry<String, Integer>> pair = new TupleList<>(); pair.of("Not Unique Key 1", 1); pair.of("Not Unique Key 2", 2);
便捷方法和便捷子類化
為了簡化過程,可以使用createEntry()方法建立 SimpleEntry 實例與所需的類型。此外,您可以子類化 ArrayList 類別並公開 of() 方法,以使語法更加簡潔。 這允許使用更簡潔的語法來建立並向集合添加對。以上是我什麼時候應該使用 `AbstractMap.SimpleEntry` 而不是 Java 的 `Map` 作為值對?的詳細內容。更多資訊請關注PHP中文網其他相關文章!