作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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);
}
}
最佳答案
我注意到的一件事是,当 !>= 和 !> 等运算符不存在时,您会使用它们。如果您想说某事不大于或等于或不大于,请在条件前添加 NOT 运算符 (!)。例如,有
if(!(this.balance - out >= 0.0))
和
if(!(this.balance > 0.0))
而不是你以前拥有的。
关于java - 我的 CS I 类(class)有什么问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35977394/
我是一名优秀的程序员,十分优秀!