diff --git a/DefaultObjectFactory.java b/DefaultObjectFactory.java new file mode 100644 index 0000000..7851295 --- /dev/null +++ b/DefaultObjectFactory.java @@ -0,0 +1,37 @@ +package 分布式对象创建系统; + + +/** + * 榛樿瀵硅薄宸ュ巶锛堝伐鍘傛柟娉曟ā寮忥級 + * @author chuyang + * @version 1.0 + * @created 28-10月-2025 11:03:00 + */ +public class DefaultObjectFactory implements DistributedObjectFactory { + + public DefaultObjectFactory(){ + + } + + public void finalize() throws Throwable { + + } + /** + * + * @param type + */ + @Override + public DistributedObject createObject(ObjectType type){ + return null; + } + + /** + * + * @param type + * @param id + */ + @Override + public DistributedObject createObject(ObjectType type, String id){ + return null; + } +}//end DefaultObjectFactory \ No newline at end of file