java 单键值对类AbstractMap.SimpleEntry使用方法 发表于 2019-07-06 | 阅读次数: | 本文字数: 554 | 阅读时长 ≈ 1 分钟 1234567891011public class Test { public static void main(String[] args) { Map.Entry<String,String> entry = new AbstractMap.SimpleEntry<String, String>("name", "野猿新一"); System.out.println("new AbstractMap.SimpleEntry:" + entry); System.out.println("getKey:" + entry.getKey()); System.out.println("getValue:" + entry.getValue()); entry.setValue("野猿新二"); System.out.println("setValue:" + entry); }} 测试结果如下 1234new AbstractMap.SimpleEntry:name=野猿新一getKey:namegetValue:野猿新一setValue:name=野猿新二