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

php中this,self,parent的区别讲解

程序员文章站 2022-04-20 17:06:07
...
  1. class name //建立了一个名为name的类

  2. {
  3. private $name; //定义属性,私有
  4. //定义构造函数,用于初始化赋值

  5. function __construct( $name )
  6. {
  7. $this->name = $name; //这里已经使用了this指针语句①
  8. }
  9. //析构函数

  10. function __destruct(){}
  11. //打印用户名成员函数

  12. function printname()
  13. {
  14. print( $this->name ); //再次使用了this指针语句②,也可以使用echo输出
  15. }
  16. }
  17. $obj1 = new name( "PBPHome" ); //实例化对象 语句③
  18. //执行打印

  19. $obj1->printname(); //输出: PBPHome
  20. echo "
    "; //输出:回车
  21. //第二次实例化对象

  22. $obj2 = new name( "PHP" );
  23. //执行打印

  24. $obj2->printname(); //输出:PHP
  25. ?>
复制代码

说明: 在语句①和语句②使用了this指针,那么当时this是指向谁呢? 其实this是在实例化时来确定指向谁,比如第一次实例化对象的时候(语句③),那么当时this就是指向$obj1对象,那么执行语句②的打印时就把 print( $this->name ),那么当然就输出了"PBPHome"。第二个实例的时候,print( $this->name )变成了print( $obj2->name ),于是就输出了"PHP"。所以说,this就是指向当前对象实例的指针,不指向任何其他对象或类。

再来看下self的用法。

self是指向类本身,也就是self是不指向任何已经实例化的对象,一般self使用来指向类中的静态变量。 假如使用类里面静态(一般用关键字static)的成员,必须使用self来调用。 注意,使用self来调用静态变量必须使用 :: (域运算符号),见实例。

  1. class counter //定义一个counter的类

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

  7. function __construct()
  8. {
  9. $this->lastCount = ++self::$firstCount; //使用self来调用静态变量 语句②
  10. }
  11. //打印lastCount数值

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

  18. $obj = new Counter();
  19. $obj->printLastCount(); //执行到这里的时候,程序输出 1

  20. ?>
复制代码

注意: 语句①和语句②。在语句①定义了一个静态变量$firstCount,那么在语句②时使用了self调用这个值,这时调用的就是类自己定义的静态变量$frestCount。 静态变量与下面对象的实例无关,它只是跟类有关,那么调用类本身的,那么就无法使用this来引用,因为self是指向类本身,与任何对象实例无关。 然后,前面使用的this调用的是实例化的对象$obj。

最后,我们就parent的用法进行讲解。

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

例子:

  1. //建立基类Animal

  2. class Animal
  3. {
  4. public $name; //基类的属性,名字$name
  5. //基类的构造函数,初始化赋值

  6. public function __construct( $name )
  7. {
  8. $this->name = $name;
  9. }
  10. }
  11. //定义派生类Person 继承自Animal类

  12. class Person extends Animal
  13. {
  14. public $personSex; //对于派生类,新定义了属性$personSex性别、$personAge年龄
  15. public $personAge;
  16. //派生类的构造函数

  17. function __construct( $personSex, $personAge )
  18. {
  19. parent::__construct( "PBPHome" ); //使用parent调用了父类的构造函数 语句①
  20. $this->personSex = $personSex;
  21. $this->personAge = $personAge;
  22. }
  23. //派生类的成员函数,用于打印,格式:名字 is name,age is 年龄

  24. function printPerson()
  25. {
  26. print( $this->name. " is " .$this->personSex. ",age is " .$this->personAge );
  27. }
  28. }
  29. //实例化Person对象

  30. $personObject = new Person( "male", "21");
  31. //执行打印

  32. $personObject->printPerson(); //输出结果:PBPHome is male,age is 21
  33. ?>

复制代码

里面同样含有this的用法。 细节:成员属性都是public(公有属性和方法,类内部和外部的代码均可访问)的,特别是父类的,这是为了供继承类通过this来访问。 关键点在语句①: parent::__construct( "heiyeluren" ),这时使用parent来调用父类的构造函数进行对父类的初始化,这样,继承类的对象就都给赋值了name为PBPHome。我们可以测试下,再实例化一个对象$personObject1,执行打印后name仍然是PBPHome。

总结: this是指向对象实例的一个指针,在实例化的时确定指向; self是对类本身的一个引用,一般用来指向类中的静态变量; parent是对父类的引用,一般使用parent来调用父类的构造函数。

有了以上的理论与实例相结合的介绍,你是不是已经对这三个关键词this,self,parent的理解,已经很深入了。 程序员之家,祝大家学习进步。