我在java类程序的介绍中不断收到错误“')'''。
此代码设计用于代表银行帐户用户有哪些问题?为什么我会收到这些错误?我该如何解决这些问题?
非常感谢任何帮助。
以下代码:
import java.util.*;
import java.text.DecimalFormat;
public class Customer
{
private long acctNum;
private String name;
private double balance = 0;
DecimalFormat df = new DecimalFormat("$0.00");
public Customer(long acctNum, String name)
{
this.acctNum = acctNum;
this.name = name;
this.balance = 0.00;
}
public void deposit(double in)
{
this.balance = this.balance + in;
}
public void withdraw(double out)
{
*if((this.balance - out) !>= 0.0)*
{
System.out.println("Invalid amount to withdraw.");
}
*else*
{
this.balance = this.balance - out;
}
}
public void calcInterest()
{
*if(this.balance !> 0.0)*
{
System.out.println("No interest added to an empty account.");
}
*else*
{
this.balance = (this.balance)*1.03;
}
}
public double getBalance()
{
return df.format(this.balance);
}
}
答案 0 :(得分:1)
我注意到的一件事是您使用的操作符如!> =和!>当它们不存在时。如果你想说某事不大于或等于或不大于,那么在条件之前放一个NOT运算符(!)。例如,有
if(!(this.balance - out >= 0.0))
和
if(!(this.balance > 0.0))
而不是之前的。
答案 1 :(得分:0)
第一
if((this.balance - out) < 0.0)
应该改为
*if(this.balance !> 0.0)*
第二
if(this.balance <= 0.0)
应该改为
return df.format(this.balance);
和
return Double.valueOf(this.balance);
应该改为
n!
然后您的程序将开始工作
希望有所帮助