1. 首页
  2. 数据库
  3. 其它
  4. dess中一个简单的多路委托的实现

dess中一个简单的多路委托的实现

上传者: 2020-12-22 13:00:24上传 PDF文件 21.04KB 热度 11次
代码如下: var SDelegate = function(f, b, c) { if (b) { this.asFunction_ = function() { return f.apply(b, arguments); } } else { this.asFunction_ = function() { return f.apply(this, arguments); } } this.method_ = f; this.binding_ = b; this.continus = c; } SDelegate.composite = function(d) { if (d.continu
用户评论