我有一个类PlaylistTrack,我想扩展类Song。
当我构建Song时,我传递了一系列数据,如艺术家,标题等。
当我构建PlaylistTrack时,我希望它拥有所有歌曲的方法以及它引入的新方法。
但是我也希望在其构造函数中传递特定的歌曲。
所以我这样做:
class Song {
function __construct( $song_data ) {
$this->_data = $song_data;
// etc
}
}
然后这个。别拍我!
class PlaylistTrack extends Song {
function __construct( $song ) {
// call the song's constructor again in the context of this class
// to give access to its methods.
parent::__construct( $song->_data );
// other PlaylistTrack-specific material to go here
}
}
至少可以说,这感觉很奇怪。好吗?还有其他选择吗?
答案 0 :(得分:3)
扩展类时会自动继承构造函数。如果您不打算向现有构造函数添加功能,则无需对其进行多态化。
如果您确实想要为其添加功能,那么您所做的就完全没问了。