我在按钮中添加代码时遇到了一些问题,例如:我在数量上输入 2 它将 * 价格和数量示例 400 * 2 = 800 但是当我再次输入 2 时意味着 800 x 2 = 1600,有人可以指导我吗?感谢错误显示在最后 2 行。
` 私有 void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
int id = Integer.parseInt(jTextField1.getText()); int qty = Integer.parseInt(jTextField2.getText());
purchasecontroller.PurchaseProduct(id, qty);
String getname = displaycontroller.SearchbyProductName(id);
jLabel4.setText( "" + getname );
jLabel3.setText("" + qty);
jList1.addElement(getname + qty);
// jList1.add(new Product("Hello", 1));
String getprice = displaycontroller.SearchbyProductPrice(id);
int total = qty * Integer.parseInt (getprice);
jLabel11.setText("" + total );
int finals = (total * qty);
jLabel12.setText("" + finals );
}
`