我面临乘以priceperItem和数量的问题,编译器会给错误的运营商带来错误' *'
String.format("%s\t%s\t%s\t%s\n%s\t%d\t%f\t%f","Discription","Qty","Rate","Amount",getItem_description(),getQuantity(),getPricePerItem(),getPricePerItem()*getQuantity());
答案 0 :(得分:0)
getPricePerItem()
或getQuantity()
(或两者)最有可能返回未定义或允许*
操作的数据类型。