Blogger Information
Blog 250
fans 3
comment 0
visits 321732
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
OOP 面向对象 类的定义和声明
梁凯达的博客
Original
978 people have browsed it

实例

<?php
	
	/*
		[修饰符] class  类名{
				[成员属性]
				[成员方法]
		}
	

	 */
	

	//定义一个人类
	class Person{

	}

	//通过类得到对象   new关键字 得到对象 我们管这种内容叫做实例化
	
	$wc = new Person;
	var_dump($wc);

运行实例 »

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

实例

<?php
	//定义小鸡类

	class Chick{
		//成员属性
		//就是写在类里面的变量  只不过前面多了一个public
		public $legs;//有几个腿
		public $bozi;// 有脖子
		public $tou ;//头
		public $yumao;//羽毛
		public $color;//颜色

		//类的定义里面不能出现过程化代码
		//echo  '我们说的小鸡 我感觉他爹可能是鸭子为什么呢因为叫嘎嘎嘎 之后下蛋还有裤衩衩!!!';
		//define('HOST',111);

		//叫
		public function say(){
			if(true){

		}
			echo '嘎嘎嘎嘎';
		}

		//吃
		public function eat(){
			echo '我要吃米';
		}

		//下蛋
		public  function egg(){
			echo '咯咯哒咯咯哒...';
		}

	}

	//实例化对象
	$xj = new Chick;
	var_dump($xj);

	//注意: 类的定义里面不能出现过程化的代码 也就是说不能出现除成员属性和成员方法以外的内容

运行实例 »

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

 

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