savings.java
来自「bank account program. if there is savin」· Java 代码 · 共 9 行
JAVA
9 行
// This is the Savings interface. It is an interface, not a class.
// Therefore we do not need to provide detail implementation of the methods, just list them.
public interface Savings
{ void deposit(double amount);
void withdraw(double amount);
double getBalance();
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?