📌  相关文章
📜  Java中的 AbstractMap.SimpleEntry getValue() 方法及示例

📅  最后修改于: 2022-05-13 01:54:58.867000             🧑  作者: Mango

Java中的 AbstractMap.SimpleEntry getValue() 方法及示例

AbstractMap.SimpleEntry用于维护一个键和一个值条目。可以使用 setValue 方法更改该值。此类有助于构建自定义地图实现的过程。

AbstractMap.SimpleEntrygetValue()方法返回与在此类中创建的条目对应的值。

句法:

public K getValue()

参数:此方法不接受任何内容。

返回值:该方法返回该条目对应的值。

下面的程序说明了 getValue() 方法:
方案一:

// Java program to demonstrate
// AbstractMap.SimpleEntry.getValue() 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 > 
arrayList
 = new ArrayList >();
  
        // 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
 map = arrayList.get(i);
  
            // get value from map using getValue()
            int value = map.getValue();
  
            System.out.println("Value " + value);
        }
    }
}
输出:
Value 123
Value 130
Value 994

方案二:

// Java program to demonstrate
// AbstractMap.SimpleEntry.getValue() method
  
import java.util.*;
  
public class GFG {
  
    @SuppressWarnings({ "unchecked", "rawtypes" })
    public static void main(String[] args)
    {
  
        // create a ArrayList of Map
        ArrayList > 
arrayList
 = new ArrayList >();
  
        // 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 
map = arrayList.get(i);
  
            // get value from map using getValue()
            String value = map.getValue();
  
            System.out.println("Value " + value);
        }
    }
}
输出:
Value  Emp 1
Value  Emp 2
Value  Emp 3
Value  Emp 4
Value  Emp 5

参考资料: https: Java/util/AbstractMap.SimpleEntry.html#getValue()