Blogger Information
Blog 15
fans 0
comment 1
visits 10907
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
类属性的自动加载与继承-----5.3日作业
吴明的博客
Original
589 people have browsed it
  1. 类方法  改造成静态方法是主流,在类方法中须完成构造器、查询器、设置器等函数方法,以便于可以在类外调用,静态成员属于类所有,必须用类进行调用,不能使用对象调用,在类中使用 self::, 在类外部使用 类名::  调用。(也可以使用static),静态方法中只允许使用静态属性,不允许使用$this  因为静态成员属于所有对象,与具体的对象无关,所以不能使用$this伪变量。

  2. 类加载  类的自动加载,使用了标准php函数库中的spl_autoload_register()函数来实现,类文件实例化的就可以完成加载。

  3. 类的继承与方法重载   

    public----都可以使用  protect ----当前类和子类中可以使用  private----仅限当前类使用。超过使用域可以通过查询器来完成调用。

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post