gpt4 book ai didi

java - 取消按钮必须有一个功能

转载 作者:行者123 更新时间:2023-12-02 00:01:06 26 4
gpt4 key购买 nike

我在使用此取消按钮时遇到问题。

使用这些代码:

int deposit;
String dep =
JOptionPane.showInputDialog("How much would you like to deposit?\n\t$: ");
deposit = Integer.parseInt(dep);

应该出现“确定”和“取消”按钮,但每当我单击取消按钮时,都没有任何响应。我想要的是,每当我单击“取消”按钮时,它都应该返回到主菜单,但是如何返回呢?

代码:

private static void processDeposit(String num, int rc){
int deposit;
String dep =
JOptionPane.showInputDialog(
"How much would you like to deposit?\n\t$: ");
deposit = Integer.parseInt(dep);
JOptionPane.showMessageDialog(
null, "You have deposited $" + dep + " into the account of " + name);
myAccount.setBalance(myAccount.getBalance() + deposit);
}

最佳答案

如果用户点击取消 dep 将返回 null

所以你可以这样做:

 if(input == null || (input != null && ("".equals(input))))   
{

//what you ever you need to do here

}

关于java - 取消按钮必须有一个功能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14859256/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com