当前位置:Gxlcms > PHP教程 > PHPthis,self跟parent关键字

PHPthis,self跟parent关键字

时间:2021-07-01 10:21:17 帮助过:4人阅读

PHP this,self 和 parent 关键字

?

我们先建立几个概念,这三个关键字分别是用在什么地方 呢?我们初步解释一下,this是指向当前对象的指针(我们姑且用C里面的指针来看吧),self是指向当前类的指针,parent是指向父类的指针。

这么说还不能很了解,那我们就根据实际的例子结合来讲讲。

(1) this

?

  1. <!--?php
  2. class UserName
  3. {
  4. //定义属性
  5. private $name;
  6. //定义构造函数
  7. function __construct( $name )
  8. {
  9. $this--->name = $name; //这里已经使用了this指针
  10. }
  11. //析构函数
  12. function __destruct(){}
  13. //打印用户名成员函数
  14. function printName()
  15. {
  16. print( $this->name ); //又使用了this指针
  17. }
  18. }
  19. //实例化对象
  20. $nameObject = new UserName( "heiyeluren" );
  21. //执行打印
  22. $nameObject->printName(); //
输出: heiyeluren //第二次实例化对象 $nameObject2 = new UserName( "PHP5" ); //执行打印 $nameObject2->printName(); //输出:PHP5 ?>

我们看,上面的类分别在10行和18行使用了this指针,那么当时this是指向谁呢?其实this是在实例化的时候来确定指向谁,比如第一次实例化对象 的时候(22行),那么当时this就是指向$nameObject对象,那么执行18行的打印的时候就把print( $this->name ),那么当然就输出了"heiyeluren"。第二个实例的时候,print( $this->name )变成了print( $nameObject2->name ),于是就输出了"PHP5"。所以说,this就是指向当前对象实例的指针,不指向任何其他对象或类。

?

(2)self

首先我们要明确一点,self是指向类本身,也就是self是不指向任何已经实例化的对象,一般self使用来指向类中的静态变量。

?

  1. <!--?php
  2. class Counter
  3. {
  4. //定义属性,包括一个静态变量
  5. private static $firstCount = 0;
  6. private $lastCount;
  7. //构造函数
  8. function __construct()
  9. {
  10. $this--->lastCount = ++selft::$firstCount; //使用self来调用静态变量,使用self调用必须使用::(域运算符号)
  11. }
  12. //打印最次数值
  13. function printLastCount()
  14. {
  15. print( $this->lastCount );
  16. }
  17. }
  18. //实例化对象
  19. $countObject = new Counter();
  20. $countObject->printLastCount(); //
输出 1 ?>

?我们这里只要注意两个地方,第6行和第12行。我们在第二行定义了一个静态变量$firstCount,并且初始值为0,那么在12行的时候调用了这个值 得,使用的是self来调用,并且中间使用"::"来连接,就是我们所谓的域运算符,那么这时候我们调用的就是类自己定义的静态变量$ frestCount,我们的静态变量与下面对象的实例无关,它只是跟类有关,那么我调用类本身的的,那么我们就无法使用this来引用,可以使用 self来引用,因为self是指向类本身,与任何对象实例无关。换句话说,假如我们的类里面静态的成员,我们也必须使用self来调用。

?

(3)parent

我们知道parent是指向父类的指针,一般我们使用parent来调用父类的构造函数。

?

  1. <!--?php
  2. //基类
  3. class Animal
  4. {
  5. //基类的属性
  6. public $name; //名字
  7. //基类的构造函数
  8. public function __construct( $name )
  9. {
  10. $this--->name = $name;
  11. }
  12. }
  13. //派生类
  14. class Person extends Animal //Person类继承了Animal类
  15. {
  16. public $personSex; //性别
  17. public $personAge; //年龄
  18. //继承类的构造函数
  19. function __construct( $personSex, $personAge )
  20. {
  21. parent::__construct( "heiyeluren" ); //使用parent调用了父类的构造函数
  22. $this->personSex = $personSex;
  23. $this->personAge = $personAge;
  24. }
  25. function printPerson()
  26. {
  27. print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge );
  28. }
  29. }
  30. //实例化Person对象
  31. $personObject = new Person( "male", "21");
  32. //执行打印
  33. $personObject->printPerson(); //
输出:heiyeluren is male,this year 21 ?>

?我们注意这么几个细节:成员属性都是public的,特别是父类的,是为了供继承类通过this来访问。我们注意关键的地方,第25行:parent:: __construct( "heiyeluren" ),这时候我们就使用parent来调用父类的构造函数进行对父类的初始化,因为父类的成员都是public的,于是我们就能够在继承类中直接使用 this来调用。

?

?

?

人气教程排行