current.java

来自「bank account program. if there is savin」· Java 代码 · 共 7 行

JAVA
7
字号
// This is the Current 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 Current
{   void issueCheque(double amount);
     double getBalance();
} 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?