静态工厂方法的一个优点是:
与构造函数不同,它们可以返回返回类型的任何子类型的对象,这为您选择返回对象的类提供了很大的灵活性。
这到底是什么意思?有人能用密码解释这件事吗?
发布于 2012-11-22 04:54:23
public class Foo {
public Foo() {
// If this is called by someone saying "new Foo()", I must be a Foo.
}
}
public class Bar extends Foo {
public Bar() {
// If this is called by someone saying "new Bar()", I must be a Bar.
}
}
public class FooFactory {
public static Foo buildAFoo() {
// This method can return either a Foo, a Bar,
// or anything else that extends Foo.
}
}发布于 2012-11-22 05:06:13
让我把你的问题分成两部分
(1)与构造函数不同,它们可以返回返回类型的任何子类型的对象
(2)这为您选择返回对象的类提供了很大的灵活性。
假设您有两个从Player扩展出来的类,即PlayerWithBall和PlayerWithoutBall
public class Player{
public Player(boolean withOrWithout){
//...
}
}
//...
// What exactly does this mean?
Player player = new Player(true);
// You should look the documentation to be sure.
// Even if you remember that the boolean has something to do with a Ball
// you might not remember whether it specified withBall or withoutBall.
to
public class PlayerFactory{
public static Player createWithBall(){
//...
}
public static Player createWithoutBall(){
//...
}
}
// ...
//Now its on your desire , what you want :)
Foo foo = Foo.createWithBall(); //or createWithoutBall();在这里您可以得到两个答案:Flexability,并且与构造函数行为不同,现在您可以通过这些工厂方法看到,这取决于您需要哪种类型的播放器。
https://stackoverflow.com/questions/13506073
复制相似问题