91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java描述設計模式(04):抽象工廠模式

發布時間:2020-07-18 17:45:11 來源:網絡 閱讀:400 作者:知了一笑 欄目:編程語言

本文源碼:GitHub·點這里 || GitEE·點這里

一、抽象工廠模式

1、生活場景

汽車生產根據用戶選擇的汽車類型,指定不同的工廠進行生產,選擇紅旗轎車,就要使用中國工廠,選擇奧迪轎車,就要使用德國工廠。

2、抽象工廠模式

1) 抽象工廠模式:定義了一個interface用于創建相關對象或相互依賴的對象,而無需指明具體的類;
2) 抽象工廠模式可以將簡單工廠模式和工廠方法模式進行整合;
3) 從設計層面看,抽象工廠模式就是對簡單工廠模式的改進(或者稱為進一步的抽象)。
4) 將工廠抽象成兩層,AbstractFactory(抽象工廠) 和 具體實現的工廠子類,方便程序擴展。

3、代碼UML圖

Java描述設計模式(04):抽象工廠模式

4、源代碼實現

/**
 * 抽象工廠模式
 */
public class C01_AbstractFactory {
    public static void main(String[] args) {
        CarProductFactory factory = new ChinaCarFactory() ;
        factory.getCar("hq") ;
        factory = new GermanyCarFactory () ;
        factory.getCar("ad") ;
    }
}

// 汽車生產抽象工廠
interface CarProductFactory {
    CarProduct getCar (String type) ;
}
// 中國汽車工廠
class ChinaCarFactory implements CarProductFactory {
    @Override
    public CarProduct getCar(String type) {
        CarProduct product = null ;
        if ("hq".equals(type)){
            product = new HQCar() ;
            product.name="紅旗一號" ;
            product.date="1999-09-19" ;
            product.material();
            product.origin();
        } else if ("df".equals(type)){
            product = new DFCar() ;
            product.name="東風一號" ;
            product.date="2019-09-19" ;
            product.material();
            product.origin();
        }
        return product ;
    }
}
// 德國汽車工廠
class GermanyCarFactory implements CarProductFactory {
    @Override
    public CarProduct getCar(String type) {
        CarProduct product = null ;
        if ("ad".equals(type)){
            product = new ADCar() ;
            product.name="奧迪A8" ;
            product.date="2017-09-19" ;
            product.material();
            product.origin();
        } else if ("bm".equals(type)){
            product = new BMCar() ;
            product.name="寶馬X8" ;
            product.date="2018-09-19" ;
            product.material();
            product.origin();
        }
        return product ;
    }
}
// 汽車生產抽象類
abstract class CarProduct {
    /**
     * 汽車名稱
     */
    protected String name ;
    /**
     * 生產日期
     */
    protected String date ;
    /**
     * 材料
     */
    abstract void material () ;
    /**
     * 產地
     */
    abstract void origin () ;
}
// 紅旗車
class HQCar extends CarProduct {
    @Override
    void material() {
        System.out.println(super.name+"材料...");
    }
    @Override
    void origin() {
        System.out.println(super.date+":"+super.name+"在中國北京生產");
    }
}
// 東風車
class DFCar extends CarProduct {
    @Override
    void material() {
        System.out.println(super.name+"材料...");
    }
    @Override
    void origin() {
        System.out.println(super.date+":"+super.name+"在中國南京生產");
    }
}
// 奧迪車
class ADCar extends CarProduct {
    @Override
    void material() {
        System.out.println(super.name+"材料...");
    }
    @Override
    void origin() {
        System.out.println(super.date+":"+super.name+"在德國柏林生產");
    }
}
// 寶馬車
class BMCar extends CarProduct {
    @Override
    void material() {
        System.out.println(super.name+"材料...");
    }
    @Override
    void origin() {
        System.out.println(super.date+":"+super.name+"在德國慕尼黑生產");
    }
}

二、Spring框架應用

1、場景描述

Spring框架中獲取配置文件中Bean的多種方式。

2、核心配置

<bean id="carBean" class="com.model.design.spring.node04.abstractFactory.CarBean">
    <property name="name" value="中國紅旗" />
</bean>
<bean id="carBean1" class="com.model.design.spring.node04.abstractFactory.CarBean">
    <property name="name" value="德國奧迪" />
</bean>

3、測試文件

這里使用了兩種方式獲取。

@RunWith(SpringJUnit4Cla***unner.class)
@ContextConfiguration(locations = {"classpath:/spring/spring-abstract-factory.xml"})
public class SpringTest {

    @Resource
    private BeanFactory beanFactory ;

    @Test
    public void test01 (){
        CarBean carBean = (CarBean)beanFactory.getBean("carBean") ;
        System.out.println(carBean.getName());
    }

    @Test
    public void test02 (){
        ApplicationContext context01 = new ClassPathXmlApplicationContext(
                "/spring/spring-abstract-factory.xml");
        CarBean carBean = (CarBean)context01.getBean("carBean1") ;
        System.out.println(carBean.getName());
    }
}

4、結構分析

Java描述設計模式(04):抽象工廠模式

Java描述設計模式(04):抽象工廠模式

抽象工廠封裝對象的創建。在Spring中,通過實現BeanFactory。可以從Spring的各種容器獲取bean。根據Bean的配置,getBean方法可以返回不同類型的對象(單例作用域)或初始化新的對象(原型作用域)。在BeanFactory的實現中,我們可以區分:ClassPathXmlApplicationContext,XmlWebApplicationContext等。

三、工廠模式小結

三種工廠模式 (簡單工廠模式、工廠方法模式、抽象工廠模式),工廠模式的核心用意將實例化對象的代碼封裝起來,放到工廠類中統一管理和維護,完成代碼依賴關系的解耦。從而提高程序的可擴展性和維護性。

四、源代碼地址

GitHub·地址
https://github.com/cicadasmile/model-arithmetic-parent
GitEE·地址
https://gitee.com/cicadasmile/model-arithmetic-parent

Java描述設計模式(04):抽象工廠模式

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

牙克石市| 家居| 长寿区| 逊克县| 郸城县| 龙州县| 宝清县| 息烽县| 莆田市| 丁青县| 仙居县| 白银市| 巴东县| 大方县| 黄陵县| 彩票| 南通市| 河池市| 绥阳县| 綦江县| 织金县| 瑞金市| 克山县| 金寨县| 阳城县| 高平市| 浦县| 南康市| 寿阳县| 苗栗市| 康马县| 禹城市| 巴马| 年辖:市辖区| 山西省| 马公市| 衡山县| 双柏县| 武宁县| 同心县| 乌拉特前旗|