Blogger Information
Blog 18
fans 0
comment 0
visits 20119
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
对象和类的概念以及之间的相互关系
葛佬的博客
Original
3271 people have browsed it

一、对象和类的概念以及之间的相互关系

1、类是定义一系列属性和操作的模板,而对象就是把属性进行实例化,完事交给类里面的方法进行处理
2、对象的本质,就是数据,其本身不包含方法,但是其内部有一个指针,会指向一个类,而在这个类里面,是可以包含方法的
类里面的方法描述不同的属性,因而,会产生不同的表现或者结果。
3、类和对象是不可分割的,有对象,就必定有一个类是和它相对应的。
4、区分类的依据就是其中的属性和方法,而区分类的具体方法,就是实例化一个对象。

二、实例

实例

<?php
 
class Person{
 
    public $name;
    public $age;
    public $sex;
 
    public function who()
    {
        echo $this->name." is ".$this->age." years old and is my ".$this->sex;
    }
 
}
 
class man{
    public $height;
    public $where;
 
    public function __construct($h,$w){
        $this->height = $h;
        $this->where = $w;
    }
}
 
$luyaran = new Person();
$luyaran->name = "luyaran";
$luyaran->age = "27";
$luyaran->sex = "love";
 
$luyaran->who();
echo "<br>";
$man = new man($luyaran,'142');
echo serialize($luyaran);
$luyaran_arr = array('name'=>'luyaran','age'=>'27','sex'=>'love');
echo "<br>";
echo serialize($luyaran_arr);
echo "<br>";
var_dump($man);
echo "<br>";
echo serialize($man);

运行实例 »

点击 "运行实例" 按钮查看在线实例

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
Author's latest blog post