- 浏览: 23684 次
- 性别:
- 来自: 深圳
最新评论
-
zheng108:
public class Enums { private s ...
使用enum的责任链
文章列表
接口和工厂模式
interface Service{
void method1();
void method2();
}
interface ServiceFactory{
Service getService();
}
class Implementation1 implements Service{
Implementation1(){};
public void method1() {
System.out.println("Implementation1 method1");
}
public void method2 ...