|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你的确对PHP有兴趣,那么选择教材也是很重要的。php5|关头字|详解 PHP5是一具有了大局部面向对象言语的特征的言语,比PHP4有了良多的面向对象的特征,然而有局部概念也对照绕人,所以明天拿出来讲说,说的欠好,请高手见谅. (浏览本文,需求懂得PHP5的面向对象的常识)
起首咱们来分明下面三个关头字: this,self,parent,从字面上对照好了解,是指这,本人,父亲,呵呵,对照好玩了,咱们先创立几个概念,这三个关头字分离是用在甚么中央呢?咱们初步注释一下,this是指向以后对象的指针(咱们权且用C外面的指针来看吧),self是指向以后类的指针,parent是指向父类的指针。咱们这里频仍利用指针来描写,是由于没有更好的言语来表达,呵呵,语文没学好。 -_-#
这么说还不克不及很懂得,那咱们就依据实践的例子联合来说讲。
(1) this
1 <?php
2
3 class UserName
4 {
5 //界说属性
6 private $name;
7
8 //界说机关函数
9 function __construct( $name )
10 {
11 $this->name = $name; //这里已利用了this指针
12 }
13
14 //析构函数
15 function __destruct(){}
16
17 //打印用户名成员函数
18 function printName()
19 {
20 print( $this->name ); //又利用了this指针
21 }
22 }
23
24 //实例化对象
25 $nameObject = new UserName( "heiyeluren" );
26
27 //履行打印
28 $nameObject->printName(); //输入: heiyeluren
29
30 //第二次实例化对象
31 $nameObject2 = new UserName( "PHP5" );
32
33 //履行打印
34 $nameObject2->printName(); //输入:PHP5
35 ?>
咱们看,下面的类分离在11行和20行利用了this指针,那末事先this是指向谁呢?其实this是在实例化的时分来肯定指向谁,好比第一次实例化对象的时分(25行),那末事先this就是指向$nameObject对象,那末履行18行的打印的时分就把print( $this-><name )酿成了print( $nameObject->name ),那末固然就输入了"heiyeluren"。第二个实例的时分,print( $this->name )酿成了print( $nameObject2->name ),因而就输入了"PHP5"。所以说,this就是指向以后对象实例的指针,不指向任何其他对象或类。
(2)self
起首咱们要明白一点,self是指向类自己,也就是self是不指向任何已实例化的对象,普通self利用来指向类中的静态变量。
1 <?php
2
3 class Counter
4 {
5 //界说属性,包含一个静态变量
6 private static $firstCount = 0;
7 private $lastCount;
8
9 //机关函数
10 function __construct()
11 {
12 $this->lastCount = ++selft::$firstCount; //利用self来挪用静态变量,利用self挪用必需利用::(域运算符号)
13 }
14
15 //打印最次数值
16 function printLastCount()
17 {
18 print( $this->lastCount );
19 }
20 }
21
22 //实例化对象
23 $countObject = new Counter();
24
25 $countObject->printLastCount(); //输入 1
26
27 ?>
咱们这里只需注重两个中央,第6行和第12行。咱们在第二行界说了一个静态变量$firstCount,而且初始值为0,那末在12行的时分挪用了这个值得,利用的是self来挪用,而且两头利用"::"来毗连,就是咱们所谓的域运算符,那末这时候候咱们挪用的就是类本人界说的静态变量$frestCount,咱们的静态变量与上面对象的实例有关,它只是跟类有关,那末我挪用类自己的的,那末咱们就没法利用this来援用,可使用self来援用,由于self是指向类自己,与任何对象实例有关。换句话说,假设咱们的类外面静态的成员,咱们也必需利用self来挪用。
(3)parent
咱们晓得parent是指向父类的指针,普通咱们利用parent来挪用父类的机关函数。
1 <?php
2
3 //基类
4 class Animal
5 {
6 //基类的属性
7 public $name; //名字
8
9 //基类的机关函数
10 public function __construct( $name )
11 {
12 $this->name = $name;
13 }
14 }
15
16 //派生类
17 class Person extends Animal //Person类承继了Animal类
18 {
19 public $personSex; //性别
20 public $personAge; //岁数
21
22 //承继类的机关函数
23 function __construct( $personSex, $personAge )
24 {
25 parent::__construct( "heiyeluren" ); //利用parent挪用了父类的机关函数
26 $this->personSex = $personSex;
27 $this->personAge = $personAge;
28 }
29
30 function printPerson()
31 {
32 print( $this->name. " is " .$this->personSex. ",this year " .$this->personAge );
33 }
34 }
35
36 //实例化Person对象
37 $personObject = new Person( "male", "21");
38
39 //履行打印
40 $personObject->printPerson(); //输入:heiyeluren is male,this year 21
41
42 ?>
咱们注重这么几个细节:成员属性都是public的,出格是父类的,是为了供承继类经由过程this来会见。咱们注重关头的中央,第25行:parent::__construct( "heiyeluren" ),这时候候咱们就利用parent来挪用父类的机关函数停止对父类的初始化,由于父类的成员都是public的,因而咱们就可以够在承继类中直接利用this来挪用。
总结:
this是指向对象实例的一个指针,self是对类自己的一个援用,parent是对父类的援用。
根基上我所懂得就这么多,一定有了解毛病的地方,请高手指出!
我的邮箱: heiyeluren@163.com
WriteTime: 2004-11-3 18:30
大家如果能懂得“熟能生巧”的道理也就明白了这并不是浪费时间,同时这也可以减轻板主的负担,让他们有时间去处理更难的问题。 |
|