PHP面向对象之this 关键字

by Web全栈工程师 on 2011 年 07 月 20 日

PHP5中为解决变量的命名冲突和不确定性问题,引入关键字“$this”代表其所在当前对象。

$this在构造函数中指该构造函数所创建的新对象。

在类中使用当前对象的属性和方法,必须使用$this->取值。
方法内的局部变量,不属于对象,不使用$this关键字取值。

局部变量和全局变量与 $this 关键字

使用当前对象的属性必须使用$this关键字。

局部变量的只在当前对象的方法内有效,所以直接使用。

注意:局部变量和属性可以同名,但用法不一样。在使用中,要尽量避免这样使用,以免混淆。

<!-- 验证属性和局部变量使用方法的类 -->
<?php
class A{
	private $a = 99;
    //这里写一个打印参数的方法.
	public function printInt($a){
		echo "这里的 \$a 是传递的参数 $a ";
		echo "<br>";
		echo "这里的 \$this->a 是属性 $this->a";
	}
}
$a = new A(); // 这里的$a 可不是类中的任何一个变量了.
$a->printInt(88);
?>

运行结果:

这里的 $a 是传递的参数 88
这里的 $this->a 是属性 99

用$this调用对象中的其它方法

<!--写一个类,让他自动完成最大值的换算.-->
<?php
class Math{
	//两个数值比较大小.
	public function Max($a,$b){
		return $a>$b?$a:$b;
	}
    //三个数值比较大小.
	public function Max3($a,$b,$c){
		//调用类中的其它方法.
		$a = $this->Max($a,$b);
		return $this->Max($a,$c);
	}
}
$math = new Math();
echo "最大值是 ".$math->Max3(99,100,88);
?>

运行结果:

最大值是 100

使用$this调用构造函数

调用构造函数和析构函数的方法一致。

<?
class A{
	private $a = 0;
	public function __construct(){
		$this->a = $this->a + 1 ;
	}

	public function doSomeThing(){
		$this->__construct();
		return $this->a;
	}	

}
$a = new A(); // 这里的$a 可不是类中的任何一个变量了.
echo "现在 \$a 的值是" . $a->doSomeThing();
?>

运行结果:

现在 $a 的值是2

$this 到底指的什么?

$this 就是指当前对象,我们甚至可以返回这个对象使用 $this

<?php
class A{
	public function  getASelf(){
		return $this;
	}
	public function __toString(){
		return "这是类A的实例.";		
	}	
}
$a = new A(); // 创建A的实例;
$b = $a->getASelf(); //调用方法返回当前实例.
echo $a; //打印对象会调用它的__toString方法.
?>

程序运行结果:

这是类A的实例.

通过 $this 传递对象

在这个例子中,我们写一个根据不同的年龄发不同工资的类.
我们设置处理年龄和工资的业务模型为一个独立的类.

<?php
class User{
	private $age ; 
	private $sal ;
	private $payoff ; //声明全局属性.
	
	//构造函数,中创建Payoff的对象.
	public function __construct(){
		$this->payoff = new Payoff();
	}	
	public function getAge(){
		return $this->age;
	}
	public function setAge($age){
		$this->age = $age;
	}	
	// 获得工资.
	public 	function getSal(){
		$this->sal =  $this->payoff->figure($this);
		return $this->sal;
	}
}
//这是对应工资与年龄关系的类.
class Payoff{
	public function figure($a){
		$sal =0;
		$age = $a->getAge();
		if($age >80 || $age <16 ){
			$sal = 0;
		}elseif ($age > 50){
			$sal = 1000;
		}else{
			$sal = 800;
		}
		return $sal;
	}
}
//实例化User
$user = new User();

$user->setAge(55);
echo $user->getAge()."age ,his sal is " . $user->getSal();
echo "<br>";

$user->setAge(20);
echo $user->getAge()."age , his sal is " . $user->getSal();
echo "<br>";

$user->setAge(-20);
echo $user->getAge()."age , his sal is " . $user->getSal();
echo "<br>";

$user->setAge(150);
echo $user->getAge()."age , his sal is " . $user->getSal();
?>

运行结果:

55age ,his sal is 1000
20age , his sal is 800
-20age , his sal is 0
150age , his sal is 0.

更多关于PHP面对对象设计,可以参考 “深入PHP:面向对象、模式与实践” 这本书深入地剖析了面向对象的PHP编程与设计。首先介绍了PHP的OO特性,包括类声明、对象实例化、继承、方法与属性封装以及静态方法与属性、抽象类、接 口、异常处理、对象克隆等高级主题。然后介绍了设计模式,阐述了模式的概念,展示了如何在PHP中实现几个关键的模式,用专门的章节介绍了企业模式和数据 库模式,是OOP入门的一本好书

原创文章,转载请注明:转载自Web开发笔记 | PHP面向对象之this 关键字

本文链接地址:https://www.magentonotes.com/php-oop-this.html

{ 2 comments }

早起的菜鸟 9月 9, 2011 10:44

楼主能否请教怎么阅读wp源码,我也想做个个人blog,但是看了几天,没读懂,看的头疼,请问下:怎么能够快速上手呢,摸清它的整体运行流程呢?

Magento程序员 9月 28, 2011 13:26

可以参考下 我爱水煮鱼 的博客, 他做WP教程 在国内算早的

Comments on this entry are closed.

Previous post:

Next post: