else
{
if(map.containsKey(line))
{ double d = map.get(line).getPrice();
sum +=d;
System.out.println("商品单价为:"+d);
}
else
System.out.println("未找到对应商品,请核查");
/*Iterator<Map.Entry<String,Goods>> it = entrySet.iterator();
while(it.hasNext())
{
Map.Entry<String,Goods> me = it.next();
if (me.getKey().equals(line))//通过迭代遍历Map,找出Key对应的Goods对象
{ double d = me.getValue().getPrice();
sum +=d;
System.out.println("商品单价为:"+d);
}
else
System.out.println("未找到对应商品,请核查");//<font color="#ff0000">目的是错误输入ID时才打印,为毛输入一次打印一次?</font>