java map 重复,Java HashMap重复元素

在HashMap中存储相同键但不同值时,可以将每个键映射到一个列表,然后在列表中添加值。例如,键'name1'将对应列表[1, 3, 3]。这需要自定义一个put方法,当键存在时,将新值添加到对应的列表中。
摘要由CSDN通过智能技术生成

I want to add duplicate elements on hashmap

so:

put("name1", 1);

put("name1", 3);

put("name1", 3);

put("name2", 1);

put("name2", 3);

how i can do that?

解决方案

Use a Map> i.e. you map a string to a list of integers.

So, in this case, name1 would map to a list of [1,3,3].

Obviously you'd have to write your own put method, in which you add the int to the list. Example:

put(String s, int i){

List list = map.get(s);

if(list == null){

list = new ArrayList();

map.put(s, list);

}

list.add(i);

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值