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

📄 city2impl.java

📁 《JAVA分布式程序设计》一书的源代码。
💻 JAVA
字号:
import java.rmi.*;import java.rmi.server.UnicastRemoteObject;/** * @(#)City2Impl.java * @author Qusay H. Mahmoud */public class City2Impl extends UnicastRemoteObject implements City2 {   private String cityName;    public City2Impl() throws RemoteException {     super();   }      public City2Impl(String cityName) throws RemoteException {      super();      this.cityName = cityName;   }   public int getPopulation() throws RemoteException {      if (cityName.equals("Toronto")) {         return 10;      } else if (cityName.equals("Ottawa")) { 	 return 2;      } else { 	 return 0;      }   }     public int getTemperature() throws RemoteException {      return 1;   }}

⌨️ 快捷键说明

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