PHPクラス(初級)

WBOY
リリース: 2016-06-23 13:40:12
オリジナル
915 人が閲覧しました

クラスの例: Cat.php

<?phpclass  Cat  {	private  $name ;	private $age;	private $color;			function __construct() 	{		$numargs  =  func_num_args ();		if($numargs==3)		{			$this->name=func_get_arg(0);			$this->age=func_get_arg(1);			$this->color=func_get_arg(2);		}			}/* 不支持	 * function __construct($name,$age,$color)	{		$this->name=$name;		$this->age=$age;		$this->color=$color;	} */			public function  getName()	{		return $this->name;	}		public function setName($name)	{		return $this->name=$name;	}			public function getAge()	{		return $this->age;	}	public function setAge($age)	{		$this->age=$age;	}		public function getColor()	{		return $this->color;	}	public function setColor($color)	{		$this->color=$color;	}	}?>
ログイン後にコピー

オブジェクト:

<?phpheader('Content-Type:text/html;charset=UTF-8');require 'Cat.php';$cat1 = new Cat('蔡倩倩',24,'白的');/*  * $cat1 = new Cat();$cat1->setName('蔡倩倩');$cat1->setAge(24);$cat1->setColor('白的'); */echo 'Cat1的姓名为:'.$cat1->getName().'<br/>年龄为:'.$cat1->getAge();?>
ログイン後にコピー


関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート