了解工厂方法设计模式
问题
工厂方法模式解决了创建对象的需要,而无需指定将创建的对象的确切类。当您有超类的多个子类并希望根据某些条件或参数将对象创建委托给特定子类时,这非常有用。
解决方案
工厂方法模式提供了一个用于在超类中创建对象的接口,但允许子类更改将创建的对象的类型。这通过确保客户端代码与工厂接口而不是直接与具体类交互来促进松散耦合。
优点和缺点
优点
解耦客户端代码:允许客户端代码使用接口或抽象类来创建对象,提高灵活性和可维护性。
促进代码重用:子类可以重用工厂方法中定义的相同对象创建逻辑。
支持开闭原则: 可以在不修改现有客户端代码的情况下添加新的子类,遵守开闭原则。
缺点
复杂性:通过引入多个子类和工厂方法引入了额外的复杂性。
需要子类化:每种产品类型都需要自己的子类,这可能会导致代码库中类的激增。
不适合简单情况: 在简单场景中过度使用工厂方法模式会导致不必要的抽象和复杂性。
实际应用示例
工厂方法模式的一个实际示例是用于创建文档的框架。根据文档的类型(例如 pdf、html),相应的文档工厂会创建具有适当格式和功能的文档对象。
java 中的示例代码
代码中的工厂方法模式
java
// Product interface
public interface Document {
void open();
void close();
}
// Concrete Product 1
public class PDFDocument implements Document {
@Override
public void open() {
System.out.println("Opening PDF document");
}
@Override
public void close() {
System.out.println("Closing PDF document");
}
}
// Concrete Product 2
public class HTMLDocument implements Document {
@Override
public void open() {
System.out.println("Opening HTML document");
}
@Override
public void close() {
System.out.println("Closing HTML document");
}
}
// Creator interface
public interface DocumentFactory {
Document createDocument();
}
// Concrete Creator 1
public class PDFDocumentFactory implements DocumentFactory {
@Override
public Document createDocument() {
return new PDFDocument();
}
}
// Concrete Creator 2
public class HTMLDocumentFactory implements DocumentFactory {
@Override
public Document createDocument() {
return new HTMLDocument();
}
}
// Client code
public class Client {
public static void main(String[] args) {
DocumentFactory factory1 = new PDFDocumentFactory();
Document pdfDocument = factory1.createDocument();
pdfDocument.open();
pdfDocument.close();
DocumentFactory factory2 = new HTMLDocumentFactory();
Document htmlDocument = factory2.createDocument();
htmlDocument.open();
htmlDocument.close();
}
}
登录后复制
以上就是了解工厂方法设计模式的详细内容,更多请关注php中文网其它相关文章! 

BrianSab10 天前
发表在:南通速强批量添加水印专家 v1.83Эта статья для ознак...
Ronaldgag12 天前
发表在:11日17日,星期一,在这里每天60秒读懂世界!Free PHP Blockchain ...
NelsonBOT12 天前
发表在:11日16日,星期日,在这里每天60秒读懂世界!Free non-criminal in...
Darrenjhjhjhcunny14 天前
发表在:11日14日,星期五,在这里每天60秒读懂世界!Атака черной материи...
parifoot-rdc-7926 天前
发表在:laravel 找不到页面Votre guide <a href=...
Anya142Sa1 个月前
发表在:ASUS华硕A8N-SLI Deluxe主板BIOS 10110Hello friends! I c...
91资源网站长-冰晨1 个月前
发表在:广告合作123
FrankFAT1 个月前
发表在:10日14日,星期二,在这里每天60秒读懂世界!Big cocks of blacks ...
RichardGlymn1 个月前
发表在:Java webservice多个参数怎么调用https://t.me/win_1_c...
Thomasstolo1 个月前
发表在:Java webservice多个参数怎么调用https://t.me/s/Casin...