⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloimpl.java

📁 java rmi技术实例
💻 JAVA
字号:
// Copyright MageLang Institute; Version $Id: //depot/main/src/edu/modules/RMI-mml2/magercises/RMIParameters/Solution/HelloImpl.java#2 $
import java.rmi.*;
import java.rmi.server.UnicastRemoteObject;

public

class HelloImpl

extends UnicastRemoteObject

implements Hello
{

   public HelloImpl() throws RemoteException
   {
      super();
   }

   public String sayHello() throws RemoteException
   {
     return "Hello!";

   }

   public MessageObject getMessageObject() throws RemoteException
   {
      return new MessageObject();
   }

}

⌨️ 快捷键说明

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