无法访问地图内对象的方法

时间:2011-11-01 09:42:14

标签: java

public void showTablet () {
    for (Map.Entry<String, Tablet> entry : tableMap.entrySet()) {     
        //System.out.println(entry.getValue());
        System.out.println(entry.getPrice());
    }
}

平板电脑中有一个getPrice方法,但我无法得到它?有什么问题?

1 个答案:

答案 0 :(得分:2)

使用,

entry.getValue().getPrice()

entry属于Map.Entry类型,您将拥有来自Tablet

的课程entry.getValue()的对象

另见