디자인 모델 의 생 성 모델 ― 1.5 원형 모델

<?php

	/**
	 * 1.5     
	 * 	     :
	 * 		              ,   
	 * 		    ,             
	 * 		 ,                。
	 *       :
	 *  	              ,   
	 *  	             。
	 *           :
	 *  	   PHP ,            
	 *  	       ,           
	 *  	           。
	 *    :
	 *  	1.                ,  
	 *  	          ;
	 *  	2.               .
	 *    :
	 *      :
	 *  	1.                 
	 *  	   ,  ,      。
	 *  	2.                 
	 *  	          。
	 *  	3.                 
	 *  	          ,        
	 *  	                   
	 *  	              。
	 */

	class Person{
		private $name;
		private $age;
		private $sex;
		public function __construct($name,$age,$sex){
			$this->name=$name;
			$this->age=$age;
			$this->sex=$sex;
		}

		public function getInfo(){
			return $this->name.' '.$this->age.' '.$this->sex;
		}
	}

	//   
	$p1=new Person('Jack','20','male');
	$p2=clone $p1;
	echo $p1->getInfo();
?>

좋은 웹페이지 즐겨찾기