php中的this self parent

WBOY
Release: 2016-06-23 13:35:20
Original
840 people have browsed it

  • this是指向对象实例的一个指针,在实例化的时候来确定指向;
  • self是对类本身的一个引用,一般用来指向类中的静态变量和常量;
  • parent是对父类的引用,一般使用parent来调用父类的构造函数。
  •         使用类里面静态(一般用关键字static)的成员,必须使用self来调用。使用self来调用静态变量必须使用:: (域运算符号)。

            static关键字描述一个成员是静态的,只能用类名和self::访问,值可以更改,定义时候需要加$符号,可以用private等修饰词。

            const用于类成员常量定义,只能用类名和self::访问,值不能更改,定义时候变量名一般要大写,不能添加private等修饰词。

    private static $count = 0;	//定义一个静态属性const VERSION = 2.0;		//定义一个常量
    Copy after login
    参考网址:

    Related labels:
    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template