方法中的参数可以是接口吗

答案是:可以的

Java语言中本着一切皆对象的原则,注意:方法中的接口,即接口的实现对象。

请参考以下代码

package com.atguigu.princple.segregation;

/**
 * @author Mv
 * @date 2023/3/4 17:47
 */
public class Segregation1 {
    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.depend2(new D());
        c.depend3(new D());
    }

}

interface Interface1 {
    void operation1();
}

interface Interface2{
    void operation2();
    void operation3();
}

interface Interface3{
    void operation4();
    void operation5();
}

class B implements Interface1, Interface2 {

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

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

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


class D implements Interface1, Interface3 {

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

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

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

class A {
    public void depend1(Interface1 i) {
        i.operation1();
    }
    public void depend2(Interface2 i) {
        i.operation2();
    }
    public void depend3(Interface2 i) {
        i.operation3();
    }
}

class C {
    // 方法的参数为接口
    public void depend1(Interface1 i) {
        i.operation1();
    }
    public void depend2(Interface3 i) {
        i.operation4();
    }
    public void depend3(Interface3 i) {
        i.operation5();
    }
}

执行结果

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值