首页 > 其他 > 详细

构造器与工厂方法的差别

时间:2016-04-01 14:47:49      阅读:179      评论:0      收藏:0      [点我收藏+]

原文地址:http://leihuang.org/2014/11/09/Constructors-VS-Factory-Methods/


首先看以下两者在创建对象上的差别

// instantiating a class using constructor
Dog dog = new Dog(); 

// instantiating the class using static method
Class Dog{
  private Dog(){
  }
  // factory method to instantiate the class
  public static Dog getInstance(){
    return new Dog();
  }
}


以下谈谈静态工厂方法的优缺点:

长处:

1.静态工厂方法有名字而构造函数没有

由于工厂方法能够有多个,通过名字来差别各个方法,但构造函数名字仅仅能有一个,仅仅能通过參数来差别,所以使用静态工厂方法更明了。

2.静态工厂方法支持条件性实例化

就是说你创建对象时。有时须要加入一些条件推断是否应该创建,假设满足条件则返回一个实例,不满足则返回NULL,比方单例模式。

构造函数时做不到这种,而静态工厂方法能够非常easy的做到。

3.方法可以返回返回类型的子类型

Suppose there is a class Animal and it has subclass Dog. We have static method with signature

 public static Animal getInstance(){

  }


then method can return Both objects of type Animal and Dog which provides great flexibility.

缺点:

1.If constructor of the class is not public or protected then the class cannot be sub classed

假设一个类仅仅能通过静态工厂方法来获得实例,那么该类的构造函数就不能是共同拥有的或受保护的。那么该类就不会有子类,即该类不能被继承。

单例模式中首先要私有化构造器

2.静态工厂方法和其它静态方法从名字上看无法区分

以下就是静态工厂方法经常使用的命名

valueOf —Returns an instance that has, loosely speaking, the same value as its parameters. Such static factories are effectively type-conversion methods.

of —A concise alternative to valueOf , popularized by EnumSet

getInstance —Returns an instance that is described by the parameters but cannot be said to have the same value. In the case of a singleton, getInstance takes no parameters and returns the sole instance.

newInstance —Like getInstance , except that newInstance guarantees that each instance returned is distinct from all others.

getType—Like getInstance , but used when the factory method is in a different class. Type indicates the type of object returned by the factory method.

newType—Like newInstance , but used when the factory method is in a different class. Type indicates the type of object returned by the factory method.


2014-11-09 14:39:17

Brave,Happy,Thanksgiving !


构造器与工厂方法的差别

原文:http://www.cnblogs.com/lcchuguo/p/5344825.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!