php面向对象类中的$this,static,final,const,self这几个关键字使用方法。

php中this,self,parent三个关键字的作用

this,self,parent三个关键字之间的区别,从字面上比较好理解,分别是指这、自己、父亲。我们先建立几个概念,这三个关键字分别是用在什么 地方呢?我们初步解释一下,this是指向当前对象的指针(姑且用C里面的指针来看吧),self是指向当前类的指针,parent是指向父类的指针。我
们这里频繁使用指针来描述,可能是因为没有更好的语言来表达。

<?php
<span style="color:#ff0000;">// this是指向当前对象的指针</span>
class test_this{
    private $content; //定义变量
    function __construct($content){ //定义构造函数
          $this->content= $content;
    }
    function __destruct(){}//定义析构函数
    function printContent(){//定义打印函数
        echo $this->content.'<br />';
    }
}
$test=new test_this('北京欢迎你!'); //实例化对象
$test->printContent();//北京欢迎你!
$test=new test_this('新年新气象!');//再一次实例化对象
$test->printContent();//新年新气象!
echo '<br />';
<span style="color:#ff0000;">//self是指向类的本身,只跟类有关,跟任何对象实例无关</span>
class test_self{
    private static $first_count; //定义静态变量
    private $last_count;
    function __construct(){
        $this->last_count=++self::$first_count;//直接用self调用变量的值赋值给另一个变量
    }
    function __destruct(){}
    function print_self(){
        print($this->last_count);
    }
}
$abc=new test_self();//实例化对象
$abc->print_self();//1
echo '<br />';
<span style="color:#ff0000;">//parent是指向父类的指针</span>
class test_parent{ //基类
    public $name;  //定义姓名  父类成员需要定义为public,才能够在继承类中直接使用 this来调用。
    function __construct($name){
        $this->name=$name;
    }
}
class test_son extends test_parent{ //派生类  继承test_parent
    public $gender;//定义性别
    public $age;    //定义年龄
    function __construct($gender,$age){ //继承类的构造函数
        parent::__construct('nostop');//使用parent调用父类的构造函数,来进行对父类的实例化
        $this->gender=$gender;
        $this->age=$age;
    }
    function __destruct(){}
    function print_info(){
        echo $this->name.'是个'.$this->gender.',今年'.$this->age.'岁'.'<br />';
    }
}
$nostop=new test_son('女性','22');//实例化test_son对象
$nostop->print_info();//执行输出函数  nostop是个女性,今年23岁
?>

$this

$this表示当前实例,在类的内部方法访问未声明为const及static的属性时,使用$this->value=‘phpernote‘;的形式。常见用法如:

$this->属性

$this->方法

举例如下:

查看代码打印

<span style="font-size:14px;"><?php
class MyClass{
	private $name;
	public  function __construct($name){
		$this->name=$name;
	}
	public function getname(){
		return $this->name;
	}
	public  function printName(){
		echo $this->getname();
	}
}
$myclass= new MyClass("I Like PHP");
$myclass->printName();//输出:I Like PHP
?></span>

在类里面调用当前类的属性和方法有三种方法,分别是self、parent、$this,这三个关键字的区别是:self用来指向当前的类;parent用于指向当前类的父类,可以使用该关键字调用父类的属性和方法;$this用来在类体内调用自身的属性和方法。

static

关键字可以是self(在类内部调用静态成员时所使用)静态成员所在的类名(在类外调用类内部的静态成员时所使用)

声明一个静态变量如下:

static $val=‘‘;

只存在于函数作用域的变量,函数执行之后变量的值不会丢失,只会初始化一次,初始化静态变量不能使用表达式,不用全局变量代替是因为全局变量会被所有函数访问容易造成维护不宜。

在类中使用static有两种主要用途、定义静态成员和定义静态方法。静态成员只保留一个变量的值,这个值对所有实例都是有效的,如下:

<?php
class MyObject{
	public static $myStaticVar=0;
	function myMethod(){
		self::$myStaticVar+=2;
		echo self::$myStaticVar;
	}
}
$instance1=new MyObject();
$instance1->myMethod();
$instance2=new MyObject();
$instance2->myMethod();
//结果将分别打印2、4
<?php
class Book{
	static $num=0;
	public function showMe(){
		echo"您是滴".self::$num."位访客";
		self::$num++;
	}
}
$book1=new Book();
$book1->showMe();
echo"<br>";
$book2=new Book();
$book2->showMe();
echo"<br>";
echo"您是滴".Book::$num."位访客";
?>

结果将是:

您是滴0位访客

您是滴1位访客

您是滴2位访客

另外需要注意的是如果类的方法是static的,他所访问的属性也必须是static的。

final

最终的类和方法,不能继承,该关键字修饰的方法不能被重写。一般用法如下:

<?php
final class MyClass{//此类将不允许被继承
	final function fun1(){......}//此方法将不允许被重写
}

const

在类的内部方法访问已经声明为const及static的属性时,需要使用self::$name的形式调用。举例如下:

<?php
class clss_a{
	private static $name="static class_a";
	const PI=3.14;
	public $value;
	public static function getName(){
		return self::$name;
	}
	//这种写法有误,静态方法不能访问非静态属性
	public static function getName2(){
		return self::$value;
	}
	public function getPI(){
		return self::PI;
	}
}

注意const属性的申明格式是const PI=3.14,而不是const $PI=3.14。

self

self表示类本身,指向当前的类。通常用来访问类的静态成员、方法和常量。

PHP中 :: 、-> 、self 、$this操作符的区别

在访问PHP类中的成员变量或方法时,如果被引用的变量或者方法被声明成const(定义常量)或者static(声明静态),那么就必须使用操作符::,反之如果被引用的变量或者方法没有被声明成const或者static,那么就必须使用操作符->。

另外,如果从类的内部访问const或者static变量或者方法,那么就必须使用自引用的self,反之如果从类的内部访问不为const或者static变量或者方法,那么就必须使用自引用的$this。

PHP双冒号::的用法

双冒号操作符即作用域限定操作符Scope Resolution Operator可以访问静态、const和类中重写的属性与方法。

在类定义外使用的话,使用类名调用。在PHP 5.3.0,可以使用变量代替类名。Program List:用变量在类定义外部访问。

<?php
class Fruit {
    const CONST_VALUE = 'Fruit Color';
}
$classname = 'Fruit';
echo $classname::CONST_VALUE; // As of PHP 5.3.0
echo Fruit::CONST_VALUE;
?>

Program List:在类定义外部使用::

<?php
class Fruit {
    const CONST_VALUE = 'Fruit Color';
}
class Apple extends Fruit
{
    public static $color = 'Red';
    public static function doubleColon() {
        echo parent::CONST_VALUE . "\n";
        echo self::$color . "\n";
    }
}

程序运行结果:Fruit Color Red

Program List:调用parent方法

<?php
class Fruit
{
    protected function showColor() {
        echo "Fruit::showColor()\n";
    }
}
class Apple extends Fruit
{
    // Override parent's definition
    public function showColor()
    {
        // But still call the parent function
        parent::showColor();
        echo "Apple::showColor()\n";
    }
}
$apple = new Apple();
$apple->showColor();
?>

程序运行结果:

Fruit::showColor()

Apple::showColor()

Program List:使用作用域限定符

<?php
    class Apple
    {
        public function showColor()
        {
            return $this->color;
        }
    }
    class Banana
    {
        public $color;

        public function __construct()
        {
            $this->color = "Banana is yellow";
        }
        public function GetColor()
        {
            return Apple::showColor();
        }
    }
    $banana = new Banana;
    echo $banana->GetColor();
?>

程序运行结果:Banana is yellow

Program List:调用基类的方法

<?php
class Fruit
{
    static function color()
    {
        return "color";
    }
    static function showColor()
    {
        echo "show " . self::color();
    }
}
class Apple extends Fruit
{
    static function color()
    {
        return "red";
    }
}
Apple::showColor();
// output is "show color"!
?>

程序运行结果:show color

时间: 2024-10-25 06:21:08

php面向对象类中的$this,static,final,const,self这几个关键字使用方法。的相关文章

php面向对象类中常用的魔术方法

php面向对象类中常用的魔术方法 1.__construct():构造方法,当类被实例化new $class时被自动调用的方法,在类的继承中可以继承与覆盖该方法,例: //__construct() class construct{ public function __construct(){ $this->var = "this is var"; } } class con2 extends construct{ public function __construct(){ $

在JAVA中利用public static final的组合方式对常量进行标识

在JAVA中利用public static final的组合方式对常量进行标识(固定格式). 对于在构造方法中利用final进行赋值的时候,此时在构造之前系统设置的默认值相对于构造方法失效. 常量(这里的常量指的是实例常量:即成员变量)赋值: ①在初始化的时候通过显式声明赋值.Final int x=3: ②在构造的时候赋值. 局部变量可以随时赋值. 1 package TomText; 2 //利用if语句,判断某一年是否是闰年. 3 public class TomText_28 { 4 p

java学习中,面向对象的三大特性:封装、继承、多态 以及 super关键字和方法的重写(java 学习中的小记录)

java学习中,面向对象的三大特性:封装.继承.多态 以及 super关键字和方法的重写(java 学习中的小记录) 作者:王可利(Star·星星) 封装     权限修饰符:public 公共的,private 私有的     封装的步骤:          1.使用private 修饰需要封装的成员变量.          2.提供一个公开的方法设置或者访问私有的属性              设置 通过set方法,命名格式:     set属性名();  属性的首字母要大写 访问 通过ge

面向对象-类中的三个装饰器

为了代码更加完善,引入几个装饰器.. 装饰类中的方法 @classmethod    --->装饰类方法,不用self属性,只用类的cls属性 @staticmethod    --->装饰静态方法,既不用self属性,又不用类cls的属性 @property           --->把一个方法伪装属性 下面具体说说他们的用法: [email protected]装饰类方法,那什么是类方法呢? 在类中一个方法不用对象属性,但使用静态属性,那这个方法就是类方法,被classmethod

小胖说事28------iOS中extern,static和const差别和使用方法

通俗的讲: extern字段使用的时候,声明的变量为全局变量,都能够调用,也有这样一种比較狭义的说法:extern能够扩展一个类中的变量到还有一个类中: static声明的变量是静态变量,变量值改变过之后,保存这次改变,每次使用的时候都要读取一遍值. const声明过得变量值是不可改变的.是readonly的属性,不能够改变变量的值. 详细使用方法: 1.static的使用方法:static NSString *str = @"哈哈"; 2.const的使用方法:NSString *c

小胖说事28------iOS中extern,static和const区别和用法

通俗的讲: extern字段使用的时候,声明的变量为全局变量,都可以调用,也有这样一种比较狭义的说法:extern可以扩展一个类中的变量到另一个类中: static声明的变量是静态变量,变量值改变过之后,保存这次改变,每次使用的时候都要读取一遍值: const声明过得变量值是不可改变的,是readonly的属性,不可以改变变量的值. 具体用法: 1.static的用法:static NSString *str = @"哈哈"; 2.const的用法:NSString *const st

JavaBeans 中添加 private static final long serialVersionUID = 1L

这个东西是用来serialization 的key,A和B相互之间传输信息,用seralize,但是相互之间把解包之后的文件进行了更改,如果你程序中不加这个,相互之间再传输,会因为这个key不一样,而失败.所以,在程序中定义,会使软件版本兼容,无论怎么改,都可以相互序列化和反序列化. Java中,如果class实现了序列化接口,你没有加这一行,eclipse会自动给warning,建议加上,否则,JVM会自动编译生成一个序列号,这样传输会造成反序列化失败.因为不同的JVM之间的序列化算法是不一样

线程中断:Thread类中interrupt()、interrupted()和 isInterrupted()方法详解

首先看看官方说明: interrupt()方法 其作用是中断此线程(此线程不一定是当前线程,而是指调用该方法的Thread实例所代表的线程),但实际上只是给线程设置一个中断标志,线程仍会继续运行. interrupted()方法 作用是测试当前线程是否被中断(检查中断标志),返回一个boolean并清除中断状态,第二次再调用时中断状态已经被清除,将返回一个false. isInterrupted()方法 作用是只测试此线程是否被中断 ,不清除中断状态  下面我们进行测试说明: 定义一个MyThr

JavaSE7基础 类中的成员方法 局部变量和成员变量的变量名相同时,方法将使用局部变量

版本参数:jdk-7u72-windows-i586注意事项:博文内容仅供参考,不可用于其他用途. 代码 class Test{ //成员变量在堆内存中,有默认初始值 int num; String str; double d; public void printNum(){ //在成员方法中,局部变量num和成员变量num的变量名相同时,方法将使用局部变量 int num=1; System.out.println(num); } } class Demo{ public static voi