Java's three factory patterns: 1. Simple factory pattern, which provides a function to create object instances without caring about its specific implementation; 2. Factory method pattern; 3. Abstract factory pattern, which provides a function to create an object instance. An interface for a family of related or interdependent objects without specifying their concrete classes.
(Recommended tutorial: java introductory tutorial)
1. Simple factory pattern
Definition of simple factory: Provides a function to create object instances without caring about its specific implementation. The type of the created instance can be an interface, an abstract class, or a specific class
Implementing the car interface
public?interface?Car?{ ????String?getName(); }
Benz class
public?class?Benz?implements?Car?{ ????@Override ????public?String?getName()?{ ????????return?"Benz"; ????} }
BMW type
public?class?BMW?implements?Car?{ ????@Override ????public?String?getName()?{ ????????return?"BMW"; ????} }
Simple factory that can produce both BMW and Mercedes-Benz
public?class?SimpleFactory?{ ????public?Car?getCar(String?name){ ????????if?(name.equals("BMW")){ ????????????return?new?BMW(); ????????}else?if?(name.equals("benz")){ ????????????return?new?Benz(); ????????}else?{ ????????????System.out.println("不好意思,這個品牌的汽車生產(chǎn)不了"); ????????????return?null; ????????} ????} }
Test class
public?class?SimpleFactoryTest?{ ????public?static?void?main(String[]?args){ ????????SimpleFactory?simpleFactory?=?new?SimpleFactory(); ????????Car?car?=?simpleFactory.getCar("BMW"); ????????System.out.println(car.getName()); ????} }
Test result
BMW
According to the definition of a simple factory, users only need the product and don’t care how the product is produced, and it looks perfect. But think about it, are there any factories in this world that produce everything?
Obviously does not exist. Every car brand has its own production factory and its own production technology. Mapping to the spring framework, we have many types of beans that need to be produced. If we only rely on a simple factory to implement it, how many if..else ifs do we have to nest in the factory class?
Moreover, when we produce a car in the code, it just comes out with a new one, but in actual operation we don’t know how many operations are required. Loading, registration and other operations will be reflected in the factory class, so this class It will become chaotic and inconvenient to manage, so each brand should have its own production category.
Because it is dedicated, it is professional. At this time, the factory method appeared.
2. Factory method pattern
Factory interface
//定義一個工廠接口,功能就是生產(chǎn)汽車 public?interface?Factory?{ ????Car?getCar(); }
Benz factory
public?class?BenzFactory?implements?Factory?{ ????@Override ????public?Car?getCar()?{ ????????return?new?Benz(); ????} }
BMW Factory
public?class?BMWFactory?implements?Factory{ ????@Override ????public?Car?getCar()?{ ????????return?new?BMW(); ????} }
Test category
public?class?FactoryTest?{ ???public?static?void?main(String[]?args){ ???????Factory?bmwFactory?=?new?BMWFactory(); ???????System.out.println(bmwFactory.getCar().getName()); ???????Factory?benzFactory?=?new?BenzFactory(); ???????System.out.println(benzFactory.getCar().getName()); ???} }
Test result
BMW Benz
According to the above It can be seen from the code that cars of different brands are produced by different factories, and they seem to be perfect. But if you look at the test category, when a person wants to buy a BMW car (assuming there is no seller), then he has to go to the BMW factory to produce one for him, and a few days later he wants to buy a Mercedes-Benz. When buying a car, you have to go to the Mercedes-Benz factory to hire someone to produce it, which undoubtedly increases the complexity of the user's operation. So is there a user-friendly method? At this time, the abstract factory pattern appeared.
3. Abstract Factory Pattern
Abstract Factory
public?abstract?class?AbstractFactory?{ ?????protected?abstract?Car?getCar(); ????? ?????//這段代碼就是動態(tài)配置的功能 ?????//固定模式的委派 ?????public?Car?getCar(String?name){ ????????if("BMW".equalsIgnoreCase(name)){ ????????????return?new?BmwFactory().getCar(); ????????}else?if("Benz".equalsIgnoreCase(name)){ ????????????return?new?BenzFactory().getCar(); ????????}else?if("Audi".equalsIgnoreCase(name)){ ????????????return?new?AudiFactory().getCar(); ????????}else{ ????????????System.out.println("這個產(chǎn)品產(chǎn)不出來"); ????????????return?null; ????????} ????} }
Default Factory
public?class?DefaultFactory?extends?AbstractFactory?{ ????private?AudiFactory?defaultFactory?=?new?AudiFactory(); ???? ????public?Car?getCar()?{ ????????return?defaultFactory.getCar(); ????} }
BMW Factory
public?class?BMWFactory?extends?AbstractFactory?{ ????@Override ????public?Car?getCar()?{ ????????return?new?BMW(); ????} }
Benz Factory
public?class?BenzFactory?extends?AbstractFactory?{ ????@Override????public?Car?getCar()?{ ????????????return?new?Benz(); ????} }
Test Class
public?class?AbstractFactoryTest?{ ????public?static?void?main(String[]?args)?{???????? ????????DefaultFactory?factory?=?new?DefaultFactory();???????? ????????System.out.println(factory.getCar("Benz").getName());???????????? ????} }
Test results
Benz
As can be seen from the above code, if the user needs a car, he only needs to go to the default factory to put forward his needs (incoming parameters ), you can get the products you want without having to find different production factories based on the products, which is convenient for users to operate.
Note: Some people sneer at design patterns, and some people respect them as gods, but I agree with them.
According to my rough understanding, the classic thing about design patterns is that it solves the pain of both the person who writes the code and the person who calls the code. Different design patterns are only applicable to Different scenarios. As for whether to use it or not, and how to use it, you need to consider it carefully.
But you shouldn’t use it just for the sake of using it. The subtleties can only be left to everyone to taste slowly.
For more programming-related knowledge, please visit: Programming Courses! !
The above is the detailed content of What are the three factory patterns in java?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undress AI Tool
Undress images for free

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

The settings.json file is located in the user-level or workspace-level path and is used to customize VSCode settings. 1. User-level path: Windows is C:\Users\\AppData\Roaming\Code\User\settings.json, macOS is /Users//Library/ApplicationSupport/Code/User/settings.json, Linux is /home//.config/Code/User/settings.json; 2. Workspace-level path: .vscode/settings in the project root directory

To correctly handle JDBC transactions, you must first turn off the automatic commit mode, then perform multiple operations, and finally commit or rollback according to the results; 1. Call conn.setAutoCommit(false) to start the transaction; 2. Execute multiple SQL operations, such as INSERT and UPDATE; 3. Call conn.commit() if all operations are successful, and call conn.rollback() if an exception occurs to ensure data consistency; at the same time, try-with-resources should be used to manage resources, properly handle exceptions and close connections to avoid connection leakage; in addition, it is recommended to use connection pools and set save points to achieve partial rollback, and keep transactions as short as possible to improve performance.

DependencyInjection(DI)isadesignpatternwhereobjectsreceivedependenciesexternally,promotingloosecouplingandeasiertestingthroughconstructor,setter,orfieldinjection.2.SpringFrameworkusesannotationslike@Component,@Service,and@AutowiredwithJava-basedconfi

itertools.combinations is used to generate all non-repetitive combinations (order irrelevant) that selects a specified number of elements from the iterable object. Its usage includes: 1. Select 2 element combinations from the list, such as ('A','B'), ('A','C'), etc., to avoid repeated order; 2. Take 3 character combinations of strings, such as "abc" and "abd", which are suitable for subsequence generation; 3. Find the combinations where the sum of two numbers is equal to the target value, such as 1 5=6, simplify the double loop logic; the difference between combinations and arrangement lies in whether the order is important, combinations regard AB and BA as the same, while permutations are regarded as different;

fixture is a function used to provide preset environment or data for tests. 1. Use the @pytest.fixture decorator to define fixture; 2. Inject fixture in parameter form in the test function; 3. Execute setup before yield, and then teardown; 4. Control scope through scope parameters, such as function, module, etc.; 5. Place the shared fixture in conftest.py to achieve cross-file sharing, thereby improving the maintainability and reusability of tests.

java.lang.OutOfMemoryError: Javaheapspace indicates insufficient heap memory, and needs to check the processing of large objects, memory leaks and heap settings, and locate and optimize the code through the heap dump analysis tool; 2. Metaspace errors are common in dynamic class generation or hot deployment due to excessive class metadata, and MaxMetaspaceSize should be restricted and class loading should be optimized; 3. Unabletocreatenewnativethread due to exhausting system thread resources, it is necessary to check the number of threads, use thread pools, and adjust the stack size; 4. GCoverheadlimitexceeded means that GC is frequent but has less recycling, and GC logs should be analyzed and optimized.

Use classes in the java.time package to replace the old Date and Calendar classes; 2. Get the current date and time through LocalDate, LocalDateTime and LocalTime; 3. Create a specific date and time using the of() method; 4. Use the plus/minus method to immutably increase and decrease the time; 5. Use ZonedDateTime and ZoneId to process the time zone; 6. Format and parse date strings through DateTimeFormatter; 7. Use Instant to be compatible with the old date types when necessary; date processing in modern Java should give priority to using java.timeAPI, which provides clear, immutable and linear

TheJVMenablesJava’s"writeonce,runanywhere"capabilitybyexecutingbytecodethroughfourmaincomponents:1.TheClassLoaderSubsystemloads,links,andinitializes.classfilesusingbootstrap,extension,andapplicationclassloaders,ensuringsecureandlazyclassloa
