91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

javascript與php觀察者模式

發布時間:2020-07-07 11:05:19 來源:網絡 閱讀:369 作者:Lee_吉 欄目:web開發
  1. JAVASCRIPT:
    a. 代碼:
    var a = function(){
    this.int = 0
    this.add = function(int){
        this.int = int
    }
    this.watch = function(){
        if(this.int==0){
            console.log('0')
        }else{
            console.log('not 0')
        }
    }
    }
    var a = new a()
    a.watch()
    a.add(1)
    a.watch()

    b. 輸出:

    0
    not 0
  2. PHP:
    a. 代碼:
    <?php
    class a{
    public $int = 0;
    public function add($int){
        $this->int += $int;
    }
    public function watch(){
        if($this->int==0){
            echo "0".PHP_EOL;
        }else{
            echo "not 0".PHP_EOL;
        }
    }
    }
    $a = new a();
    $a->watch();
    $a->add(1);
    $a->watch();

    b. 輸出:

    0
    not 0
向AI問一下細節

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

AI

海原县| 新乡市| 湖北省| 成都市| 滨海县| 凤台县| 靖远县| 文山县| 方山县| 车险| 漾濞| 鸡泽县| 资讯| 革吉县| 枞阳县| 阿鲁科尔沁旗| 佛坪县| 隆林| 田阳县| 阿荣旗| 奈曼旗| 罗源县| 延寿县| 莱西市| 锦州市| 仙游县| 德庆县| 武强县| 大足县| 台南市| 彭州市| 随州市| 桃源县| 台东市| 彭泽县| 黄龙县| 西乌| 阿鲁科尔沁旗| 从江县| 务川| 金山区|