是在java.util.Map Map.Entry是什么意思啊? 可以的话请写个例子
2个回答
展开全部
public class A {
public static void main(String[] args) {
Map<Integer,Integer> mm = new HashMap<Integer,Integer>();
for(int i=0;i<10;i++)
{
mm.put(i, i);
}
for( Entry<Integer, Integer>纳帆首 e : mm.entrySet())
{
System.out.println("key:"+e.getKey());
System.out.println("value:"+e.getValue());
}
for( Iterator<Entry<Integer, Integer>> i = mm.entrySet().iterator();i.hasNext(); )
{
Entry<Integer, Integer> e = i.next();
System.out.println("key:"+e.getKey());
System.out.println("洞数value:"轿弯+e.getValue());
}
}
}
public static void main(String[] args) {
Map<Integer,Integer> mm = new HashMap<Integer,Integer>();
for(int i=0;i<10;i++)
{
mm.put(i, i);
}
for( Entry<Integer, Integer>纳帆首 e : mm.entrySet())
{
System.out.println("key:"+e.getKey());
System.out.println("value:"+e.getValue());
}
for( Iterator<Entry<Integer, Integer>> i = mm.entrySet().iterator();i.hasNext(); )
{
Entry<Integer, Integer> e = i.next();
System.out.println("key:"+e.getKey());
System.out.println("洞数value:"轿弯+e.getValue());
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
public class MapTest {
Map map = new HashMap();
public MapTest(){
map.put("隐携a","a");
map.put("b","棚穗b"链携卜);
map.put("c","c");
}
public static void main(String[] args) {
MapTest mt = new MapTest();
Iterator it = mt.map.entrySet().iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
}
}
import java.util.Iterator;
import java.util.Map;
public class MapTest {
Map map = new HashMap();
public MapTest(){
map.put("隐携a","a");
map.put("b","棚穗b"链携卜);
map.put("c","c");
}
public static void main(String[] args) {
MapTest mt = new MapTest();
Iterator it = mt.map.entrySet().iterator();
while (it.hasNext()) {
System.out.println(it.next());
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询