Java 工厂方法/单例模式
为什么将工厂类实现为单例是标准设计?这是什么问题:
public class Factory{
public static createObjects(ObjectArgs arg){
return new Object(arg);
}
}
----
public class FactoryClient{
public void someMethod(){
Factory.createObjects(ObjectArgs arg);
}
}
Why is it a standard deign to implement Factory classes as singleton? What is wrong with this:
public class Factory{
public static createObjects(ObjectArgs arg){
return new Object(arg);
}
}
----
public class FactoryClient{
public void someMethod(){
Factory.createObjects(ObjectArgs arg);
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这不是单例。它是一个工厂方法(它甚至不是工厂)。使用这样的工厂方法并没有什么问题。
This is not a singleton. It is a factory-method (it's not even a factory). There is nothing wrong in having a factory-method like that.
创建静态工厂方法没有任何问题,而且我经常看到这种情况。
* - 也就是说,任何静态方法都没有问题(耦合、缺乏可测试性等)。考虑使用 IoC 容器 和依赖项注入而不是工厂。
There's nothing* wrong with creating static factory methods, and I see it fairly often.
* - That is, nothing wrong that isn't wrong with any static method (coupling, lack of testability, etc.). Consider using an IoC Container and dependency injection instead of factories.