您好,登錄后才能下訂單哦!
簡單工廠模式,又稱為靜態工廠模式,在其工廠類中通過一個公有的靜態方法返回每個類的實例。
代碼:
//家禽接口
interface fowl
{
public function eat(){};
public function breed(){};
}
//母雞類
class hen implements fowl
{
public function eat()
{
echo "我是雞,我吃稻子和蟲子!";
}
public function breed()
{
echo "我會生雞蛋,咯咯蛋!";
}
}
//鴨子類
class duck implements fowl
{
public function eat()
{
echo "我是鴨子,我要吃魚!";
}
public function breed()
{
echo "我會生鴨蛋,嘎嘎嘎!";
}
}
class nofowlException extends Exception
{
public $msg;
public $errType;
public function __construct($msg='',$errType=0)
{
$this->msg=$msg;
$this->errType=$errType;
}
}
//飼養員
class breeder
{
public static function factory($fowl)
{
switch($fowl)
{
case 'hen':
return new hen();
break;
case 'duck':
return new duck();
break;
default:
throws new nofowlException('對不起我們暫時還沒有養這種家禽');
break;
}
}
}
//主程序
$hen=breeder::factory('hen');
$hen->eat();//輸出我是雞,我吃稻子和蟲子!"
$hen->breed();//輸出我會生雞蛋,咯咯蛋!
$duck=breeder::factory('duck');
$duck->eat();//我是鴨子,我要吃魚!
$duck->breed();//我會生鴨蛋,嘎嘎嘎!
$goose->breeder::factory('goose');//輸出對不起我們暫時還沒有養這種家禽
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。