lockingaccountfactory_impl.java
来自「RMI英文教程,从各个方面教你怎么进行RMI开发」· Java 代码 · 共 32 行
JAVA
32 行
package com.ora.rmibook.chapter17.better.factory;
import com.ora.rmibook.chapter17.better.valueobjects.*;
import com.ora.rmibook.chapter17.better.*;
import java.rmi.server.*;
import java.rmi.*;
import java.util.*;
public class LockingAccountFactory_Impl extends LockingFactory_Impl {
public LockingAccountFactory_Impl() throws RemoteException {
}
protected Remote _getServer(String serverName) {
try {
Account returnValue = new Account_Impl(getRandomMoney(), serverName);
returnValue.setFactory(this);
return returnValue;
} catch (Exception ignored) {/* Creation of a local object should never fail*/
}
return null;
}
private Money getRandomMoney() {
int cents = (int) (Math.random() * 100000);
return new Money(cents);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?