clientitf.java

来自「JAVA聊天室 即使通讯」· Java 代码 · 共 12 行

JAVA
12
字号
import java.net.*;
import java.io.*;
public interface ClientItf
{
	public Socket  connection(String s);
	public boolean login    (UserInfo    user) throws IOException;
	public boolean Registrg (UserRegistrg  ur) throws IOException;
	public String UpateInfo(UserUpateInfo us) throws IOException;
    public boolean Retake(UserRetake ut) throws IOException;
    public ServerResults getServerResults() throws IOException; 
    public void messageSend(Message m)throws IOException;
}

⌨️ 快捷键说明

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