溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java中Pair和Map的區(qū)別有哪些

發(fā)布時間:2021-03-24 09:30:12 來源:億速云 閱讀:581 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹了java中Pair和Map的區(qū)別有哪些,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

在核心Java庫中可以使用配對(Pair)的實現(xiàn)。除此之外,某些第三方庫,比如Apache Commons和Vavr,已經(jīng)在各自的api中公開了這個功能。

核心java配對實現(xiàn)

Pair類

Pair類在javafx.util 包中,類構(gòu)造函數(shù)有兩個參數(shù),鍵及對應(yīng)值:

Pair<Integer, String> pair = new Pair<>(1, "One");
	Integer key = pair.getKey();
	String value = pair.getValue();

示例描述使用Pair類實現(xiàn)簡單Integer到String的映射。示例中g(shù)etKey方法返回key對象,getValue方法返回對應(yīng)值對象。

AbstractMap.SimpleEntry 和 AbstractMap.SimpleImmutableEntry

SimpleEntry定義在抽象類AbstractMap里面,其構(gòu)造方法與Pair類似:

AbstractMap.SimpleEntry<Integer, String> entry = new AbstractMap.SimpleEntry<>(1, "one");
	Integer key = entry.getKey();
	String value = entry.getValue();

其鍵和值可以通過標準的getter和setter方法獲得。

另外AbstractMap 類還包含一個嵌套類,表示不可變配對:SimpleImmutableEntry 類。

	AbstractMap.SimpleImmutableEntry<Integer, String> entry = new AbstractMap.SimpleImmutableEntry<>(1, "one");

應(yīng)用方式與可變的配對一樣,除了配置的值不能修改,嘗試修改會拋出UnsupportedOperationException異常。

Apache Commons

在Apache Commons庫中,org.apache.commons.lang3.tuple 包中提供Pair抽象類,不能被直接實例化,可以通過Pair.of(L,R)實例化,提供了getLeft()和getRight()方法。

Pair<Integer, String> pair= Pair.of(2, "two");
	Integer key = pair.getKey();
	String value = pair.getValue();
	Integer key = pair.getLeft();
	String value = pair.getRight();

其有兩個子類,分別代表可變與不可變配對:ImmutablePair 和 MutablePair。三者都實現(xiàn)了訪問key/value以及setter和getter方法和getLeft()和getRight()方法:

ImmutablePair<Integer, String> pair = new ImmutablePair<>(2, "Two");
	Integer key = pair.getKey();
	String value = pair.getValue();
	Integer key = pair.getLeft();
	String value = pair.getRight();

嘗試在ImmutablePair 執(zhí)行setValue方法,會拋出UnsupportedOperationException異常。Pair.of是不可變配對。
但在可變配對上執(zhí)行完全正常:

Pair<Integer, String> pair = new MutablePair<>(3, "Three");
	pair.setValue("New Three");

Vavr庫

Vavr庫中不可變的Tuple2類提供配對功能:

Tuple2<Integer, String> pair = new Tuple2<>(4, "Four");
  Integer key = pair._1();
  String value = pair._2();

在這個實現(xiàn)中,創(chuàng)建對象后不能修改,所以更新方法返回改變后的新實例:

tuplePair = pair.update2("New Four");

舉個例子

需求:分別用Pair和Map來對value做排序并打印結(jié)果。

 // 使用Pair來排序
    JSONObject jsonObject1 = new JSONObject();
    jsonObject1.put("a", 9);
    JSONObject jsonObject2 = new JSONObject();
    jsonObject2.put("a", 4);
    JSONObject jsonObject3 = new JSONObject();
    jsonObject3.put("a", 7);
    JSONObject jsonObject4 = new JSONObject();
    jsonObject4.put("a", 8);
    ArrayList<Pair<Integer, JSONObject>> pairs = new ArrayList<>();
    pairs.add(Pair.of(1, jsonObject1));
    pairs.add(Pair.of(2, jsonObject2));
    pairs.add(Pair.of(3, jsonObject3));
    pairs.add(Pair.of(4, jsonObject4));

    List<Pair<Integer, JSONObject>> result = pairs.stream().sorted(Comparator.comparingInt(o -> o.getRight().getInteger("a"))).collect(Collectors.toList());
    result.forEach(System.out::println);

    System.out.println("==============================");
    
    // 使用map來排序
    HashMap<Integer, JSONObject> integerJSONObjectHashMap = new HashMap<>();
    integerJSONObjectHashMap.put(1, jsonObject1);
    integerJSONObjectHashMap.put(2, jsonObject2);
    integerJSONObjectHashMap.put(3, jsonObject3);
    integerJSONObjectHashMap.put(4, jsonObject4);

    List<Map.Entry<Integer, JSONObject>> result2 = integerJSONObjectHashMap.entrySet().stream().sorted(Comparator.comparingInt(o -> o.getValue().getInteger("a"))).collect(Collectors.toList());
    result2.forEach(System.out::println);

感謝你能夠認真閱讀完這篇文章,希望小編分享的“java中Pair和Map的區(qū)別有哪些”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI