摘要: //类和对象//对象:一切东西都可以看做对象,对象是类的实例化。//类:类是对象的抽象,用来描述众多对象共有的特征。 //定义类 class//成员变量 和 成员方法//访问修饰符 public共有的 private 私有的 protected 受保护的//面向对象三大特性://1.封装:目的:保护 阅读全文
posted @ 2016-06-07 20:38 哔哩哔哩干杯 阅读(165) 评论(0) 推荐(0) 编辑
摘要: /*class Ren { public $name; public $sex; function __construct($n,$s) { $this->name=$n; $this->sex = $s; } function __clone() { $this->name = "李四"; //t 阅读全文
posted @ 2016-06-07 20:36 哔哩哔哩干杯 阅读(173) 评论(0) 推荐(0) 编辑
摘要: <?php /*class Ren { public static $color; static function Show() { Car::$name; self::$color; } } class Car { public static $name; }*/ //抽象类 /*abstract 阅读全文
posted @ 2016-06-07 20:34 哔哩哔哩干杯 阅读(158) 评论(0) 推荐(0) 编辑