📄 city2impl.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 + -