579末班车
2017-04-20 16:43
Set<Map.Entry<Goods, Integer>> goods = cart.getAllgoods().entrySet();
for (Map<Goods, Integer> obj : goods)
上面两句代码出现的类型转换问题,怎么解决??
Type mismatch: cannot convert from element type Map.Entry<Goods,Integer> to Map<Goods,Integer>
改成for (Map.Entry<Goods, Integer> obj : goods)
JAVA遇见HTML——Servlet篇
160613 学习 · 1029 问题
相似问题