亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

javascript與php單例模式

發布時間:2020-07-28 16:07:26 來源:網絡 閱讀:348 作者:Lee_吉 欄目:web開發

一、JAVASCRIPT:

  1. 代碼:
    var test = function (){
    this.str = '',
    this.a = function (){
        this.str += "a"
        return this
    },
    this.b = function(){
        this.str += "b"
        return this
    }
    this.out = function(){
        console.log(this.str)
    }
    }
    var entity = new test()
    entity.a().b().out()
  2. 輸出:
    ab

    二、PHP:

  3. 代碼:
    <?php
    class single{
    public $out;
    public function a($a){
        $this->out .= $a;
        return $this;
    }
    public function b($b){
        $this->out .= $b;
        return $this;
    }
    public function say(){
        echo $this->out.PHP_EOL;
    }
    public function get(){
        return $this->out;
    }
    }
    $single = new single();
    $out = $single->a('a')->b('b')->say();
    $get = $single->a('a')->b('b')->get();
    echo $get;
  4. 輸出:
    ab
    abab
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

赤城县| 鸡西市| 容城县| 兴海县| 洛川县| 珲春市| 大丰市| 玉屏| 资兴市| 教育| 象州县| 苗栗市| 衡山县| 海晏县| 长葛市| 陇西县| 沁源县| 余江县| 洪雅县| 五家渠市| 塘沽区| 兴国县| 蒙山县| 炉霍县| 马公市| 会泽县| 电白县| 宁津县| 扶余县| 准格尔旗| 徐水县| 谢通门县| 高要市| 正蓝旗| 宜良县| 东乌珠穆沁旗| 景洪市| 鱼台县| 通辽市| 黑水县| 明星|