问答详情
源自:5-3 学生选课---删除 Map 中的学生

关于entryset的问题,为什么我的没执行那个方法?求助大佬

https://img.mukewang.com/5bf6c40100017cec07020599.jpg

https://img.mukewang.com/5bf6c4010001749a08300580.jpg

  就是我这个修改操作执行后,为什么没有执行那个testEntry方法?求指出,谢谢。

提问者:远方有琴 2018-11-22 23:00

个回答

  • 精慕门7595355
    2019-07-12 17:54:17

    应该是while(true)这里,这是个死循环,需要在循环末尾break;

  • 慕用7075395
    2018-11-23 00:01:13

    for (Entry<String, Student> e : entry){

            System.out.println( e.getKey());

            System.out.println( e.getValue());

    }

    你试试这样