search
HomeJavajavaTutorialIn-depth understanding of the three implementation methods of Java factory pattern

In-depth understanding of the three implementation methods of Java factory pattern

In-depth understanding of the three implementation methods of Java factory pattern

The factory pattern is a creational design pattern, which provides the best way to create objects. Separating the object creation process from the usage process can help us decouple the code and improve the maintainability and scalability of the code. In Java, the factory pattern has a wide range of applications. This article will introduce three implementation methods of Java factory pattern and provide specific code examples.

  1. Simple Factory Pattern

Simple factory pattern is also called static factory pattern. Through a factory class, different instance objects are created according to different parameters. . It contains three roles: factory class, abstract product class and concrete product class.

The following is a sample code of a simple factory pattern:

// 抽象产品类
interface Product {
    void print();
}

// 具体产品类A
class ProductA implements Product {
    @Override
    public void print() {
        System.out.println("Product A");
    }
}

// 具体产品类B
class ProductB implements Product {
    @Override
    public void print() {
        System.out.println("Product B");
    }
}

// 工厂类
class SimpleFactory {
    public static Product createProduct(String type) {
        if (type.equals("A")) {
            return new ProductA();
        } else if (type.equals("B")) {
            return new ProductB();
        } else {
            throw new IllegalArgumentException("Invalid product type.");
        }
    }
}

// 测试代码
public class Main {
    public static void main(String[] args) {
        Product productA = SimpleFactory.createProduct("A");
        productA.print();  // 输出:Product A
        
        Product productB = SimpleFactory.createProduct("B");
        productB.print();  // 输出:Product B
    }
}

In the above code, the abstract product class Product defines a printing method, and the specific product class ProductA and ProductB implement this method. The factory class SimpleFactory uses the static method createProduct to create the corresponding product object according to the incoming parameter type.

  1. Factory Method Pattern

The factory method pattern is also called the factory pattern, which distributes the logic of creating products in the factory class to each specific factory in subcategories. It contains four roles: abstract factory class, concrete factory class, abstract product class and concrete product class.

The following is a sample code of the factory method pattern:

// 抽象产品类
interface Product {
    void print();
}

// 具体产品类A
class ProductA implements Product {
    @Override
    public void print() {
        System.out.println("Product A");
    }
}

// 具体产品类B
class ProductB implements Product {
    @Override
    public void print() {
        System.out.println("Product B");
    }
}

// 抽象工厂类
interface Factory {
    Product createProduct();
}

// 具体工厂类A
class FactoryA implements Factory {
    @Override
    public Product createProduct() {
        return new ProductA();
    }
}

// 具体工厂类B
class FactoryB implements Factory {
    @Override
    public Product createProduct() {
        return new ProductB();
    }
}

// 测试代码
public class Main {
    public static void main(String[] args) {
        Factory factoryA = new FactoryA();
        Product productA = factoryA.createProduct();
        productA.print();  // 输出:Product A
        
        Factory factoryB = new FactoryB();
        Product productB = factoryB.createProduct();
        productB.print();  // 输出:Product B
    }
}

In the above code, the abstract product class Product defines a printing method, and the specific product class ProductA and ProductB implement this method. The abstract factory class Factory defines an abstract method for creating products. The specific factory classes FactoryA and FactoryB respectively implement this method and create corresponding product objects.

  1. Abstract Factory Pattern

The abstract factory pattern is an extension of the factory method pattern. It consists of multiple abstract product classes, multiple concrete product classes, It consists of an abstract factory class and multiple concrete factory classes. It provides an optimal way to create a family of related or interdependent objects.

The following is a sample code of the abstract factory pattern:

// 抽象产品类A
interface ProductA {
    void print();
}

// 具体产品A1
class ProductA1 implements ProductA {
    @Override
    public void print() {
        System.out.println("Product A1");
    }
}

// 具体产品A2
class ProductA2 implements ProductA {
    @Override
    public void print() {
        System.out.println("Product A2");
    }
}

// 抽象产品类B
interface ProductB {
    void print();
}

// 具体产品B1
class ProductB1 implements ProductB {
    @Override
    public void print() {
        System.out.println("Product B1");
    }
}

// 具体产品B2
class ProductB2 implements ProductB {
    @Override
    public void print() {
        System.out.println("Product B2");
    }
}

// 抽象工厂类
interface AbstractFactory {
    ProductA createProductA();
    ProductB createProductB();
}

// 具体工厂类1
class ConcreteFactory1 implements AbstractFactory {
    @Override
    public ProductA createProductA() {
        return new ProductA1();
    }
    
    @Override
    public ProductB createProductB() {
        return new ProductB1();
    }
}

// 具体工厂类2
class ConcreteFactory2 implements AbstractFactory {
    @Override
    public ProductA createProductA() {
        return new ProductA2();
    }
    
    @Override
    public ProductB createProductB() {
        return new ProductB2();
    }
}

// 测试代码
public class Main {
    public static void main(String[] args) {
        AbstractFactory factory1 = new ConcreteFactory1();
        ProductA productA1 = factory1.createProductA();
        productA1.print();  // 输出:Product A1
        
        ProductB productB1 = factory1.createProductB();
        productB1.print();  // 输出:Product B1
        
        AbstractFactory factory2 = new ConcreteFactory2();
        ProductA productA2 = factory2.createProductA();
        productA2.print();  // 输出:Product A2
        
        ProductB productB2 = factory2.createProductB();
        productB2.print();  // 输出:Product B2
    }
}

In the above code, the abstract product classes ProductA and ProductB respectively define a print Method, specific product classes ProductA1, ProductA2, ProductB1 and ProductB2 implement this method. The abstract factory class AbstractFactory defines two abstract methods for creating products. The concrete factory classes ConcreteFactory1 and ConcreteFactory2 respectively implement these two methods to create corresponding products. object.

Through the code examples of the above three implementation methods, we can have a deeper understanding of the application and implementation of the Java factory pattern. Depending on different scenarios and needs, choosing a suitable factory pattern can help us improve the maintainability and scalability of our code, thereby making our code more flexible and easier to maintain.

The above is the detailed content of In-depth understanding of the three implementation methods of Java factory pattern. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Is Java Platform Independent if then how?Is Java Platform Independent if then how?May 09, 2025 am 12:11 AM

Java is platform-independent because of its "write once, run everywhere" design philosophy, which relies on Java virtual machines (JVMs) and bytecode. 1) Java code is compiled into bytecode, interpreted by the JVM or compiled on the fly locally. 2) Pay attention to library dependencies, performance differences and environment configuration. 3) Using standard libraries, cross-platform testing and version management is the best practice to ensure platform independence.

The Truth About Java's Platform Independence: Is It Really That Simple?The Truth About Java's Platform Independence: Is It Really That Simple?May 09, 2025 am 12:10 AM

Java'splatformindependenceisnotsimple;itinvolvescomplexities.1)JVMcompatibilitymustbeensuredacrossplatforms.2)Nativelibrariesandsystemcallsneedcarefulhandling.3)Dependenciesandlibrariesrequirecross-platformcompatibility.4)Performanceoptimizationacros

Java Platform Independence: Advantages for web applicationsJava Platform Independence: Advantages for web applicationsMay 09, 2025 am 12:08 AM

Java'splatformindependencebenefitswebapplicationsbyallowingcodetorunonanysystemwithaJVM,simplifyingdeploymentandscaling.Itenables:1)easydeploymentacrossdifferentservers,2)seamlessscalingacrosscloudplatforms,and3)consistentdevelopmenttodeploymentproce

JVM Explained: A Comprehensive Guide to the Java Virtual MachineJVM Explained: A Comprehensive Guide to the Java Virtual MachineMay 09, 2025 am 12:04 AM

TheJVMistheruntimeenvironmentforexecutingJavabytecode,crucialforJava's"writeonce,runanywhere"capability.Itmanagesmemory,executesthreads,andensuressecurity,makingitessentialforJavadeveloperstounderstandforefficientandrobustapplicationdevelop

Key Features of Java: Why It Remains a Top Programming LanguageKey Features of Java: Why It Remains a Top Programming LanguageMay 09, 2025 am 12:04 AM

Javaremainsatopchoicefordevelopersduetoitsplatformindependence,object-orienteddesign,strongtyping,automaticmemorymanagement,andcomprehensivestandardlibrary.ThesefeaturesmakeJavaversatileandpowerful,suitableforawiderangeofapplications,despitesomechall

Java Platform Independence: What does it mean for developers?Java Platform Independence: What does it mean for developers?May 08, 2025 am 12:27 AM

Java'splatformindependencemeansdeveloperscanwritecodeonceandrunitonanydevicewithoutrecompiling.ThisisachievedthroughtheJavaVirtualMachine(JVM),whichtranslatesbytecodeintomachine-specificinstructions,allowinguniversalcompatibilityacrossplatforms.Howev

How to set up JVM for first usage?How to set up JVM for first usage?May 08, 2025 am 12:21 AM

To set up the JVM, you need to follow the following steps: 1) Download and install the JDK, 2) Set environment variables, 3) Verify the installation, 4) Set the IDE, 5) Test the runner program. Setting up a JVM is not just about making it work, it also involves optimizing memory allocation, garbage collection, performance tuning, and error handling to ensure optimal operation.

How can I check Java platform independence for my product?How can I check Java platform independence for my product?May 08, 2025 am 12:12 AM

ToensureJavaplatformindependence,followthesesteps:1)CompileandrunyourapplicationonmultipleplatformsusingdifferentOSandJVMversions.2)UtilizeCI/CDpipelineslikeJenkinsorGitHubActionsforautomatedcross-platformtesting.3)Usecross-platformtestingframeworkss

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.