當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java AbstractMap.SimpleEntry toString()用法及代碼示例


AbstractMap.SimpleEntry <K,V>用於維護鍵和值條目。可以使用setValue方法更改該值。此類有助於構建自定義Map實現。

AbstractMap.SimpleEntry <K,V>的toString()方法返回此SimpleEntry映射條目的String表示形式。此方法返回此Map條目的鍵的字符串表示形式,後跟等號字符(“=”),然後返回此條目值的字符串表示形式。

用法:


public String toString()

參數:此方法不接受任何內容。

返回值:此方法返回此映射條目的String表示形式。

以下示例程序旨在說明toString()方法:
程序1:

// Java program to demonstrate 
// AbstractMap.SimpleEntry.toString() method 
  
import java.util.*; 
import java.util.AbstractMap.SimpleEntry; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        // create a ArrayList of Map 
        ArrayList<AbstractMap 
                      .SimpleEntry<Integer, Integer> > 
            arrayList 
            = new ArrayList<AbstractMap 
                                .SimpleEntry<Integer, Integer> >(); 
  
        // add values 
        arrayList.add(new AbstractMap.SimpleEntry(0, 123)); 
        arrayList.add(new AbstractMap.SimpleEntry(1, 130)); 
        arrayList.add(new AbstractMap.SimpleEntry(2, 994)); 
  
        // print keys 
        for (int i = 0; i < arrayList.size(); i++) { 
  
            // get map from list 
            AbstractMap.SimpleEntry<Integer, Integer> 
                map 
                = arrayList.get(i); 
  
            // get representation of map using toString() 
            String value = map.toString(); 
  
            System.out.println(value); 
        } 
    } 
}
輸出:
0=123
1=130
2=994

程序2:

// Java program to demonstrate 
// AbstractMap.SimpleEntry.toString() method 
  
import java.util.*; 
  
public class GFG { 
  
    @SuppressWarnings({ "unchecked", "rawtypes" }) 
    public static void main(String[] args) 
    { 
  
        // create a ArrayList of Map 
        ArrayList<AbstractMap 
                      .SimpleEntry<String, String> > 
            arrayList 
            = new ArrayList<AbstractMap 
                                .SimpleEntry<String, String> >(); 
  
        // add values 
        arrayList.add(new AbstractMap 
                          .SimpleEntry(" 001AB ", " Emp 1")); 
        arrayList.add(new AbstractMap 
                          .SimpleEntry(" 011AC ", " Emp 2")); 
        arrayList.add(new AbstractMap 
                          .SimpleEntry(" 111AD ", " Emp 3")); 
        arrayList.add(new AbstractMap 
                          .SimpleEntry(" 101BE ", " Emp 4")); 
        arrayList.add(new AbstractMap 
                          .SimpleEntry(" 110CE ", " Emp 5")); 
  
        // print keys 
        for (int i = 0; i < arrayList.size(); i++) { 
  
            // get map from list 
            AbstractMap.SimpleEntry<String, String> 
                map 
                = arrayList.get(i); 
  
            // get representation of map using toString() 
            String value = map.toString(); 
  
            System.out.println(value); 
        } 
    } 
}
輸出:
001AB = Emp 1
011AC = Emp 2
111AD = Emp 3
101BE = Emp 4
110CE = Emp 5

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/AbstractMap.SimpleEntry.html#toString()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 AbstractMap.SimpleEntry toString() Method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。