PHP面向对象的设计模式-工厂模式(四)

2023-04-28 15:58:11 浏览数 (1)

产品族

产品族是一组相关的产品,例如不同品牌的汽车或电子设备。在抽象工厂模式中,每个具体工厂都将负责创建一个产品族的所有产品。下面是一个示例:

代码语言:javascript复制
interface ProductAInterface {
    public function getName();
}

class ProductA1 implements ProductAInterface {
    public function getName() {
        return 'Product A1';
    }
}

class ProductA2 implements ProductAInterface {
    public function getName() {
        return 'Product A2';
    }
}

interface ProductBInterface {
    public function getName();
}

class ProductB1 implements ProductBInterface {
    public function getName() {
        return 'Product B1';
    }
}

class ProductB2 implements ProductBInterface {
    public function getName() {
        return 'Product B2';
    }
}

在上面的代码中,我们定义了两个产品族:ProductA和ProductB。每个产品族都有两个具体产品:ProductA1和ProductA2,以及ProductB1和ProductB2。

使用抽象工厂模式

使用抽象工厂模式时,您需要首先选择要使用的具体工厂,然后使用该工厂来创建产品。下面是一个示例:

代码语言:javascript复制
$factory1 = new ConcreteFactory1();
$productA1 = $factory1->createProductA();
echo $productA1->getName(); // Output: Product A1

$factory2 = new ConcreteFactory2();
$productB2 = $factory2->createProductB();
echo $productB2->getName(); // Output: Product B2

在上面的代码中,我们首先创建了ConcreteFactory1和ConcreteFactory2的实例,然后使用它们来创建ProductA1和ProductB2的实例,并输出它们的名称。

php

0 人点赞