在PHP中,对象是否可以将自身转换为其子类之一。
例如
class Children1 extends Parent {
// the children
}
class Parent {
public function loadChildConfiguration($type){
select($type){
case 1: self::MAGICALLY_TRANSFORM_INTO(Children1); break;
case 2: self::MAGICALLY_TRANSFORM_INTO(Children2); break;
// etc...
}
}
}
$foo = new Parent(); // foo is a Parent
$foo->loadChildConfiguration(1); // foo is now a Children1
现在我唯一的想法就是在父项中创建一个静态类作为新构造函数
class Parent {
public static constructByType($type){
select($type){
case 1: $class = Children1; break;
case 2: $class = Children2; break;
// etc...
}
return new $class;
}
}
$bar = Parent::constructByType(1); // bar is a Children1
这应该有效,因为我不需要在创建父项后获取子类。
有没有办法在创建对象后将其更改为子对象?也许还有另一种“更清洁”的方法来将新方法和参数加载到现有对象中?