bankinterface.java
来自「用java写的股票交易游戏」· Java 代码 · 共 11 行
JAVA
11 行
// jingjing Wang
//420 final project
import java.rmi.Remote;
public interface Bankinterface extends Remote {
//for the player to create one account
public void CreateAccount(String m) throws java.rmi.RemoteException;
public void Deposit(String m,double amount) throws java.rmi.RemoteException;
public void Withdraw(String m,double amount) throws java.rmi.RemoteException;
public double CheckBalance(String name) throws java.rmi.RemoteException;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?