设计模式七大原则-接口隔离原则InterfaceSegregation

接口隔离原则:

客户端不应该依赖它不需要的接口,即一个类对另一个类的依赖应该建立在最小的接口上

案例:

类A通过接口Interface1依赖类B,类C通过接口Interface1依赖类D,如果接口Interface1对于类A和类c来说不是最小接口,那么类B和类D必须去实现他们不需要的方法(造成浪费)。

java 复制代码
public class interfaceSegregation {
    public static void main(String[] args) {
        A a = new A();
        a.depend1(new B());
        a.depend2(new B());
        a.depend3(new B());

        C c = new C();
        c.depend1(new D());
        c.depend4(new D());
        c.depend5(new D());

    }
}

interface interface1{
    void method1();
    void method2();
    void method3();
    void method4();
    void method5();
}

class B implements interface1{

    @Override
    public void method1() {
        System.out.println("B实现了method1");
    }

    @Override
    public void method2() {
        System.out.println("B实现了method2");
    }

    @Override
    public void method3() {
        System.out.println("B实现了method3");
    }

    @Override
    public void method4() {
        System.out.println("B实现了method4");
    }

    @Override
    public void method5() {
        System.out.println("B实现了method5");
    }
}

class D implements interface1{

    @Override
    public void method1() {
        System.out.println("D实现了method1");
    }

    @Override
    public void method2() {
        System.out.println("D实现了method2");
    }

    @Override
    public void method3() {
        System.out.println("D实现了method3");
    }

    @Override
    public void method4() {
        System.out.println("D实现了method4");
    }

    @Override
    public void method5() {
        System.out.println("D实现了method5");
    }
}

 class A {
    void depend1(interface1 interface1){
        interface1.method1();
    }
     void depend2(interface1 interface1){
         interface1.method2();
     }
     void depend3(interface1 interface1){
         interface1.method3();
     }
 }

 class C {
     void depend1(interface1 interface1){
         interface1.method1();
     }
     void depend4(interface1 interface1){
         interface1.method4();
     }
     void depend5(interface1 interface1){
         interface1.method5();
     }

 }

按隔离原则应当这样处理:将接口Interface1拆分为独立的几个接口,类A和类C分别与他们需要的接口建立依赖关系。也就是采用接口隔离原则。

按照实际情况将Interface1分为Interface1、Interface2、Interface3 等,代码略。

在项目中常见的业务类直接依赖另外一个业务类的时候往往也是违背接口隔离原则的,在实际项目中,出于开发速度、维护成本等原因,通常不会过于细化接口。

相关推荐
kisshyshy18 小时前
从无崖子到OpenAI:大模型间的“传功”,动了谁的奶酪?
人工智能·深度学习·设计模式
某不知名網友1 天前
C++ 六大常用设计模式详解(单例、工厂、策略、状态、观察者、代理)
开发语言·c++·设计模式
咖啡八杯1 天前
GoF设计模式——责任链模式
设计模式·面试·架构
大辉狼_音频架构2 天前
Vol.01 高频设计模式
设计模式
我登哥MVP2 天前
走进 Gang of Four 设计模式:代理模式
设计模式·代理模式
我登哥MVP2 天前
走进 Gang of Four 设计模式:外观模式
java·设计模式·外观模式
ttod_qzstudio2 天前
【软考设计模式】备忘录模式:对象状态的捕获与无损恢复精讲
设计模式·备忘录模式
ttod_qzstudio3 天前
【软考设计模式】责任链模式:请求传递的多级处理与发送接收解耦精讲
设计模式·责任链模式
2501_914245933 天前
C语言设计模式详解:从理论到实践的完整指南
c语言·开发语言·设计模式
CaffeinePro3 天前
四⼤极简架构原则KISS/DRY/YAGNI/LOD
设计模式·架构