Blogger Information
Blog 21
fans 0
comment 1
visits 19078
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
class 类的基础操作!
XFY_肆意De...
Original
863 people have browsed it

类的声明及实例化

  • 类成员 类属性 类方法
  1. <?php
  2. //声明一个类
  3. class User
  4. {
  5. //类属性
  6. public $name='传奇' //公开的;
  7. protected //受保护的;
  8. private //私有的
  9. //类方法
  10. public function show(){
  11. return $this->name;
  12. }
  13. }
  14. //实例化
  15. $user = new User();

public 公开的 类里类外都可以访问。
protected 受保护的,只在本类或子类可以访问,实例化外不可以访问
private 只在本类可以访问,其他都不可以访问

  1. 这里我就不一一的用代码来演示了,赶作业!理解万岁。自己知道就行了!
  2. $this->关键字,可以理解为 "类自己",因为在有的时候需要调用类里面的属性或是方法的时候,可以用这个关键字来访问;
  3. self 关键字,作用为控制类名变化,跟着变化,可以用到self关键字,代表本类,你可以理解成$this 差不多.
  4. extends 继承 继承是类的复用.理解扩展
  5. static 静态属性 可以申明一个类的成员属性/或方法/或类自己本身,为静态的,注意:静态属性仅只用一次,不可以被创建,否则报错.一般申明为静态方法了,则本类全部是静态的如果在静态内下面调用静调成员或方法则使用self::$成员;来访问

Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

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