虚函数 php,PHP5中虚函数的实现方法分享

请看下面的代码:

class A {

public function x() {

echo "A::x() was called.\n";

}

public function y() {

self::x();

echo "A::y() was called.\n";

}

public function z() {

$this->x();

echo "A::z() was called.\n";

}

}

class B extends A {

public function x() {

echo "B::x() was called.\n";

}

}

$b = new B();

$b->y();

echo "--\n";

$b->z();

?>

该例中,A::y()调用了A::x(),而B::x()覆盖了A::x(),那么当调用B::y()时,B::y()应该调用A::x()还是 B::x()呢?在C++中,如果A::x()未被定义为虚函数,那么B::y()(也就是A::y())将调用A::x(),而如果A::x()使用 virtual关键字定义成虚函数,那么B::y()将调用B::x()。然而,在PHP5中,虚函数的功能是由 self 和 $this 关键字实现的。如果父类中A::y()中使用 self::x() 的方式调用了 A::x(),那么在子类中不论A::x()是否被覆盖,A::y()调用的都是A::x();而如果父类中A::y()使用 $this->x() 的方式调用了 A::x(),那么如果在子类中A::x()被B::x()覆盖,A::y()将会调用B::x()。

上例的运行结果如下:

A::x() was called. A::y() was called. --

B::x() was called. A::z() was called.

virtual-function.php

class ParentClass {

static public function say( $str ) {

static::do_print( $str );

}

static public function do_print( $str ) {

echo "

Parent says $str

";

}

}

class ChildClass extends ParentClass {

static public function do_print( $str ) {

echo "

Child says $str

";

}

}

class AnotherChildClass extends ParentClass {

static public function do_print( $str ) {

echo "

AnotherChild says $str

";

}

}

echo phpversion();

$a=new ChildClass();

$a->say( 'Hello' );

$b=new AnotherChildClass();

$b->say( 'Hello' );

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值