发布网友 发布时间:2022-05-12 08:29
共5个回答
热心网友 时间:2024-02-20 11:54
举个例子:
Map<Integer, String> map = new HashMap<Integer, String>();
先拿所有的键:
Integer[] keys = map.keySet().toArray(new Integer[0]);
然後随机一个键,找出该值:
Random random = new Random();
Integer randomKey = keys[random.nextInt(keys.length)];
String randomValue = map.get(randomKey);
//第一种:普遍使用,二次取值
System.out.println("通过Map.keySet遍历key和value:");
for (String key : map.keySet()) {
System.out.println("key= "+ key + " and value= " + map.get(key));
}
//第二种
System.out.println("通过Map.entrySet使用iterator遍历key和value:");
Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, String> entry = it.next();
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
}
热心网友 时间:2024-02-20 11:55
比如你map里面有十个键值对,你可以用1-10分别对应代替map里面的十个键,然后随机获取1-10里面的一个数,再对应的得到值热心网友 时间:2024-02-20 11:55
譬如说:热心网友 时间:2024-02-20 11:56
Map 一般的是使用HashMap实现的,HashMap是无序。热心网友 时间:2024-02-20 11:56
你循环的时候用一个随机数就可以了三。求采纳