3.3.6. 模拟可调用对象

  • object.call(self[, args…])
  • 此方法会在实例作为一个函数被“调用”时被调用;如果定义了此方法,则 x(arg1, arg2, …) 就相当于 x.call(arg1, arg2, …) 的快捷方式。