如何select多个单选按钮并计算总价?
How to select multiple radio buttons and calculate total price?
我正在实现一个咖啡店菜单,但在使用单选按钮和微调器时遇到了一些问题。
如何计算多个单选按钮的总价,每个单选按钮都有小计价格?因为现在,我只能计算一种产品的总数。
我应该添加单选按钮组或类似的东西吗?
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
double Total = 0.0;
if(rbCappucino.isSelected()){
String Cappucino = chboxCappucino.getValue().toString();
int boom1 = Integer.parseInt(Cappucino);
Total = boom1 * 1.0;
}
else if(rbAmericano.isSelected()){
String Americano = chboxAmericano.getValue().toString();
int boom2 = Integer.parseInt(Americano);
Total = boom2 * 1.50;
}
else if(rbLatte.isSelected()){
String Latte = chboxLatte.getValue().toString();
int boom3 = Integer.parseInt(Latte);
Total = boom3 * 2.50;
}
totalText.setText(Double.toString(Total));
}
javax.swing.JRadioButton
被创建为 select 只有一个选项,因此在您的情况下,您应该添加 javax.swing.JCheckBox
而不是
我正在实现一个咖啡店菜单,但在使用单选按钮和微调器时遇到了一些问题。
如何计算多个单选按钮的总价,每个单选按钮都有小计价格?因为现在,我只能计算一种产品的总数。
我应该添加单选按钮组或类似的东西吗?
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
double Total = 0.0;
if(rbCappucino.isSelected()){
String Cappucino = chboxCappucino.getValue().toString();
int boom1 = Integer.parseInt(Cappucino);
Total = boom1 * 1.0;
}
else if(rbAmericano.isSelected()){
String Americano = chboxAmericano.getValue().toString();
int boom2 = Integer.parseInt(Americano);
Total = boom2 * 1.50;
}
else if(rbLatte.isSelected()){
String Latte = chboxLatte.getValue().toString();
int boom3 = Integer.parseInt(Latte);
Total = boom3 * 2.50;
}
totalText.setText(Double.toString(Total));
}
javax.swing.JRadioButton
被创建为 select 只有一个选项,因此在您的情况下,您应该添加 javax.swing.JCheckBox
而不是