欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

理解php5中的this,self,parent关键字用法

程序员文章站 2022-04-20 19:41:22
...
  1. class UserName

  2. {
  3. //定义属性
  4. private $name;
  5. //定义构造函数
  6. function __construct( $name ){
  7. $this->name = $name; //这里已经使用了this指针
  8. }
  9. //析构函数

  10. function __destruct(){}
  11. //打印用户名成员函数
  12. function printName(){
  13. print( $this->name ); //又使用了this指针
  14. }
  15. }
  16. //实例化对象

  17. $nameObject = new UserName( "heiyeluren" );
  18. //执行打印
  19. $nameObject->printName(); //输出: heiyeluren
  20. //第二次实例化对象
  21. $nameObject2 = new UserName( "PHP5" );
  22. //执行打印
  23. $nameObject2->printName(); //输出:PHP5
  24. ?>
复制代码

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

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

  1. class Counter

  2. {
  3. //定义属性,包括一个静态变量
  4. private static $firstCount = 0;
  5. private $lastCount;
  6. //构造函数

  7. function __construct(){
  8. $this->lastCount = ++selft::$firstCount; //使用self来调用静态变量,使用self调用必须使用::(域运算符号)
  9. }
  10. //打印最次数值

  11. function printLastCount(){
  12. print( $this->lastCount );
  13. }
  14. }
  15. //实例化对象

  16. $countObject = new Counter();
  17. $countObject->printLastCount(); //输出 1
  18. ?>
复制代码

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

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

  1. //基类

  2. class Animal
  3. {
  4. //基类的属性
  5. public $name; //名字
  6. //基类的构造函数
  7. public function __construct( $name ){
  8. $this->name = $name;
  9. }
  10. }
  11. //派生类

  12. class Person extends Animal //Person类继承了Animal类
  13. {
  14. public $personSex; //性别
  15. public $personAge; //年龄
  16. //继承类的构造函数
  17. function __construct( $personSex, $personAge ){
  18. parent::__construct( "heiyeluren" ); //使用parent调用了父类的构造函数
  19. $this->personSex = $personSex;
  20. $this->personAge = $personAge;
  21. }
  22. function printPerson(){
  23. print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge );
  24. }
  25. }
  26. //实例化Person对象

  27. $personObject = new Person( "male", "21");
  28. //执行打印
  29. $personObject->printPerson(); //输出:heiyeluren is male,this year 21
  30. ?>
复制代码

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