Blogger Information
Blog 28
fans 0
comment 0
visits 17042
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月26日 - PHP基础知识 类与对象及构造方法
SmileHoHo
Original
474 people have browsed it

创建类

  1. 类不好理解,因为概念太抽象。
  2. 先说一个比较抽象的,比如动物是一个类,而兔子、猪、猫狗,都是动物类的实例化对象。
  3. 类就是一个分类,一个清单。这个类有什么,通过这个类,创建出对象。
  4. 对象不是凭空出来的,都是通过类创建出来的。所以咱们是先写类,在创建对象。

    手抄作业:



构造方法(魔术方法)

  1. 构造方法是类中的特殊方法,在类实例化时会被自动调用,可用来初始化对象成员
  2. 调用类的时候,立即执行构造方法,第一个执行的方法。方法的没有位置的先后顺序
  3. 构造方法: public function __construct(){…} ,也可以跟类名一样的方法

    手抄作业:

Correcting teacher:查无此人查无此人

Correction status:qualified

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