报错问题在哪里
public void testEntrySet(){ // 通过entrySet方法,返回Map中的所有键值对 Set<Entry
> entrySet=student.entrySet(); for(Entryentry:entrySet){ System.out.println("取得键:"+entry.getKey()); System.out.println("对应的值为:"+entry.getValue().name); }为什么我这一直报错??,student>,student>