普通工厂
2022-04-25 23:48:10 8 举报
普通工厂结构
作者其他创作
大纲/内容
Factorypublic calss SenderFactory{ //根据具体类型创建对象 public sender getInstance(String type){ if(\"email\".equals(type))){ return new EmailSender(); }else if(\"sms\".equals(type))){ return new SmsSender(); }else{ Systems.out.println(\"请输入具体类型才有对应对象\") } }
InterfaceAPIpublic interface Sender { public void Send();}
ImplBpublic interface Sender { public void Send();}
ImplApublic interface Sender { public void Send();}
Clientpublic static void main(String[] args){}
0 条评论
下一页