gpt4 book ai didi

java - 银行帐户 Java

转载 作者:行者123 更新时间:2023-12-02 04:57:44 24 4
gpt4 key购买 nike

我正在尝试使用toString来显示帐号和余额,但没有成功。有人能帮我吗?谢谢

public class Account 
{

double accountBalance;
double deposit;
double accountNumber;

public Account(double initialDeposit)
{
this.accountBalance = initialDeposit;
this.accountNumber = 5;

}

public String toString()
{
this.accountBalance;
this.accountNumber;
}
}

最佳答案

您需要将 @Override 添加到该方法并相应地设置余额格式。

@Override
public String toString()
{
return "Balance on account number " + this.accountNumber +" is " + String.format("%1$,.2f", this.accountBalance);
}

关于java - 银行帐户 Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28615300/

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