23种设计模式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了23种设计模式相关的知识,希望对你有一定的参考价值。

1.普通工厂模式。

首先由以下几个类,工厂类,接口,接口实现类,测试类。

接口:定义一个接口

接口实现类:实现上面的接口

工厂类:创建接口实现类的对象。

以下是下面的逻辑图

技术分享

定义一个接口:

      interface Sender{

        public void send();
      }

定义接口实现类:

  1. public class MailSender implements Sender {  
  2.     @Override  
  3.     public void Send() {  
  4.         System.out.println("this is mailsender!");  
  5.     }  

 

  1. public class SmsSender implements Sender {  
  2.   
  3.     @Override  
  4.     public void Send() {  
  5.         System.out.println("this is sms sender!");  
  6.     }  
  7. }  

建立工厂类:

  1. public class SendFactory {  
  2.   
  3.     public Sender produce(String type) {  
  4.         if ("mail".equals(type)) {  
  5.             return new MailSender();  
  6.         } else if ("sms".equals(type)) {  
  7.             return new SmsSender();  
  8.         } else {  
  9.             System.out.println("请输入正确的类型!");  
  10.             return null;  
  11.         }  
  12.     }  
  13. }  
      1. public class FactoryTest {  
      2.   
      3.     public static void main(String[] args) {  
      4.         SendFactory factory = new SendFactory();  
      5.         Sender sender = factory.produce("sms");  
      6.         sender.Send();  
      7.     }  
      8. }

 


以上是关于23种设计模式的主要内容,如果未能解决你的问题,请参考以下文章

设计模式

23种设计模式介绍---- 创建型模式

23种设计模式介绍---- 创建型模式

学习并理解 23 种设计模式

23种设计模式介绍---- 结构型模式

23种设计模式