javascript与php单例模式

发布时间:2020-07-28 16:07:26 作者:Lee_吉
来源:网络 阅读:346

一、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
推荐阅读:
  1. PHP 单例模式
  2. 如何实现php单例模式?

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

php 单例模式 avascript

上一篇:CRC-16/MODBUS 算法

下一篇:Java中如何使用Scanner类及其方法

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》