第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

在PHP 5中創(chuàng)建單例設(shè)計(jì)模式

在PHP 5中創(chuàng)建單例設(shè)計(jì)模式

在PHP 5中創(chuàng)建單例設(shè)計(jì)模式如何使用PHP 5類創(chuàng)建Singleton類?
查看完整描述

3 回答

?
MMTTMM

TA貢獻(xiàn)1869條經(jīng)驗(yàn) 獲得超4個(gè)贊

PHP 5.3允許通過后期靜態(tài)綁定創(chuàng)建可繼承的Singleton類:

class Singleton{
    protected static $instance = null;

    protected function __construct()
    {
        //Thou shalt not construct that which is unconstructable!
    }

    protected function __clone()
    {
        //Me not like clones! Me smash clones!
    }

    public static function getInstance()
    {
        if (!isset(static::$instance)) {
            static::$instance = new static;
        }
        return static::$instance;
    }}

這解決了這個(gè)問題,在PHP5.3之前,任何擴(kuò)展Singleton的類都會(huì)生成它的父類的實(shí)例,而不是它自己的實(shí)例。

現(xiàn)在你可以:

class Foobar extends Singleton {};$foo = Foobar::getInstance();

$foo將是Foobar的實(shí)例,而不是Singleton的實(shí)例。


查看完整回答
反對 回復(fù) 2019-06-24
  • 3 回答
  • 0 關(guān)注
  • 630 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)