import java.rmi.*;
public interface extends Remote {
public void Mess() throws Remote Exception;
}
请真的需要帮助!!
答案 0 :(得分:2)
您尝试定义的此界面的名称是什么?你必须给出一个名字,例如:
public interface MyRemote extends Remote {
答案 1 :(得分:1)
您错过了界面的名称。语法应该是:
public interface <Interface_name> extends Remote{
答案 2 :(得分:0)
为界面命名。它没有名称