作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
<分区>
Possible Duplicate:
Enforcing call to parent method
我有这样一个类
abstract class theme{
abstract function header(){
// do stuff here
}
abstract function footer(){
// do stuff here
}
}
所以所有的子类都必须有这两个方法:
class Atheme extends theme{
function header(){
// do stuff here
echo ..
}
function footer(){
// do stuff here
echo ..
}
}
现在当我调用这些方法之一时:
$atheme = new Atheme;
$atheme->header();
我想让子类的header()方法自动调用父类的header()方法,而不需要在子类中专门调用parent::header()。
这可能吗?
我是一名优秀的程序员,十分优秀!