servermbean.java
来自「自己编写的服务器端jboss向client端发送message的程序」· Java 代码 · 共 13 行
JAVA
13 行
package service;
public interface ServerMBean {
public void deposit(String userNameB, float account) throws Exception;
public void withdraw(String userNameA, float account) throws Exception;
public void send() throws Exception;
public void doTransaction(String userNameA, String userNameB, float account)
throws Exception;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?