-
-
class UserName
- {
- //定义属性
- private $name;
- //定义构造函数
- function __construct( $name ){
- $this->name = $name; //这里已经使用了this指针
- }
//析构函数
- function __destruct(){}
- //打印用户名成员函数
- function printName(){
- print( $this->name ); //又使用了this指针
- }
- }
//实例化对象
- $nameObject = new UserName( "heiyeluren" );
- //执行打印
- $nameObject->printName(); //输出: heiyeluren
- //第二次实例化对象
- $nameObject2 = new UserName( "PHP5" );
- //执行打印
- $nameObject2->printName(); //输出:PHP5
- ?>
-
-
复制代码
上面的类分别在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使用来指向类中的静态变量。
-
-
class Counter
- {
- //定义属性,包括一个静态变量
- private static $firstCount = 0;
- private $lastCount;
//构造函数
- function __construct(){
- $this->lastCount = ++selft::$firstCount; //使用self来调用静态变量,使用self调用必须使用::(域运算符号)
- }
//打印最次数值
- function printLastCount(){
- print( $this->lastCount );
- }
- }
//实例化对象
- $countObject = new Counter();
- $countObject->printLastCount(); //输出 1
- ?>
-
复制代码
注意两个地方:第6行和第12行。
在第二行定义了一个静态变量$firstCount,并且初始值为0,那么在12行的时调用了这个值,使用的是self来调用,并且中间使用"::"来连接,就是所谓的域运算符,那么这时调用的就是类自己定义的静态变量$frestCount,静态变量与下面对象的实例无关,它只是跟类有关,那么我调用类本身的,就无法使用this来引用,可以使用 self来引用,因为self是指向类本身,与任何对象实例无关。
换句话说,假如要使用类里面的静态成员,也必须使用self来调用。
(3)、parent
我们知道parent是指向父类的指针,一般使用parent来调用父类的构造函数。
-
-
//基类
- class Animal
- {
- //基类的属性
- public $name; //名字
- //基类的构造函数
- public function __construct( $name ){
- $this->name = $name;
- }
- }
//派生类
- class Person extends Animal //Person类继承了Animal类
- {
- public $personSex; //性别
- public $personAge; //年龄
- //继承类的构造函数
- function __construct( $personSex, $personAge ){
- parent::__construct( "heiyeluren" ); //使用parent调用了父类的构造函数
- $this->personSex = $personSex;
- $this->personAge = $personAge;
- }
- function printPerson(){
- print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge );
- }
- }
//实例化Person对象
- $personObject = new Person( "male", "21");
- //执行打印
- $personObject->printPerson(); //输出:heiyeluren is male,this year 21
- ?>
-
复制代码
注意细节:
成员属性都是public的,特别是父类的,是为了供继承类通过this来访问。
注意关键:
第25行:parent:: __construct( "heiyeluren" ),这时我们就使用parent来调用父类的构造函数进行对父类的初始化,因为父类的成员都是public的,于是我们就能够在继承类中直接使用this来调用。
|