public void posdel(int pos, JTextField amountFieldGot, int amountGot)
{
if(slist==null)
{
JOptionPane.showMessageDialog(null, "No order has been placed yet.",null,JOptionPane.WARNING_MESSAGE);
}
else
{
if(pos==1)
{
reductionAmount = (slist.quantity*slist.price);
amountGot = amountGot - reductionAmount;
slist=slist.next;
}
else
{
int i=1;
Node temp=slist;
Node prev=null;
while(temp.next!=null && i<pos)
{
prev=temp;
temp=temp.next;
i++;
}
if(pos==i)
{
prev.next=temp.next;
}
else
{
JOptionPane.showMessageDialog(null, "Invalid order", null, JOptionPane.ERROR_MESSAGE);
}
}
}
amountFieldGot.setText(Integer.toString(amountGot));
}
所以基本上,我在GUI中有一个amountField,我作为参数传递给了posdel方法。我还将金额值作为参数传递。我获得的新金额是删除第一个订单后的amountGot。 (我没有为其他职位编写代码。) 假设传递给方法的金额值是30(14 + 16)14 =订单1,16 = order2。 我的第一个订单的价值是14。 所以amountGot = 30 - 14即16。 并且GUI中的amountField更新为16。 现在我的订单2成为我的订单1.如果我试图删除它, 我的amountField更新为14.(30-16 = 14)。 所以我猜测金额值本身与30保持不变,并且没有更新到新的amountGot值。有人可以帮我解决这个问题吗?
下面是我的删除按钮的代码。
deleteButton.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
dishDelPos = JOptionPane.showInputDialog("Enter the position of the order to be deleted");
try
{
dishDeletePosition = Integer.parseInt(dishDelPos);
order1.posdel(dishDeletePosition, amountField, amount);
repaint();
}
catch(NumberFormatException ex1)
{
JOptionPane.showMessageDialog(null,"This is not a valid position");
}
}
});
答案 0 :(得分:1)
一些事情。
您可以将类中的delete方法设为static。你会参考它
value = MyClass.deleteMethod();
您可以创建一个新类来执行方法
MyClass myClass = new MyClass();
value = myClass.deleteMethod();
您可以使用排序指针,通过将对包含delete方法的类的现有实例的引用传递到您想要调用它的位置来执行此操作。
myFunction(MyClass myClass)
{
value = myClass.deleteMethod();
}
基本上设置你的函数来返回一个值
public static int deleteMethod()
{
}
此函数返回一个int。
或者如果你需要返回更多,那么用全局变量信息
设置类class MyClass
{
public int value1;
public int value2;
public String value3;
public void deleteMethod()
{
//does something with global variables
}
}
现在在调用delete之后获取信息
Myclass myClass = new MyClass();
myClass.deleteMethod();
value1 = myClass.value1
value2 = myClass.Value2
value3 = myClass.Value3