我有一个 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
}
}
至少可以说,这感觉很奇怪。可以吗?有替代方案吗?