java设计模式 之 抽象工厂模式

本文详细阐述了抽象工厂模式的概念及其在解决工厂模式弊端方面的应用,通过具体代码实例展示了如何使用接口和实现类来实现不同类型的手机,如iPhone和三星手机,并通过工厂类进行生产。此外,还介绍了如何在主函数中调用并打印手机名称。
摘要由CSDN通过智能技术生成

java设计模式 之 抽象工厂模式

抽象工厂模式:解决了工厂模式的弊端,当新加一个功能的时候,不会影响之前的代码。

  • 接口 IMobile 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public interface IMobile {
    public void printName();
}

  • 实现类 IPhoneMobile 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public class IPhoneMobile implements IMobile {

    @Override
    public void printName() {
        System.out.println("我是一个iPhone手机!");
    }
    
}

  • 实现类 SamsungMobile 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public class SamsungMobile implements IMobile {

    @Override
    public void printName() {
        System.out.println("我是一个三星手机!");
    }    
}

  • 接口 IFactory 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public interface IFactory {
    public IMobile produce();
}

  • IPhone手机工场类 IPhoneFactory 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public class IPhoneFactory implements IFactory {

    @Override
    public IMobile produce() {
        return new IPhoneMobile();
    }    
}

  • 三星手机工场类 SamsungFactory 代码如下:

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */

package Factory;

/**
 *
 * @author dev
 */
public class SamsungMobile implements IMobile {

    @Override
    public void printName() {
        System.out.println("我是一个三星手机!");
    }    
}

  • 最后,main 函数如下:

public static void main(String[] args) {
        // TODO code application logic here
        IFactory factory = new IPhoneFactory();
        IMobile iphone = factory.produce();
        iphone.printName();
    }

  • 运行效果如下:


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值