课程
/前端开发
/Node.js
/进击Node.js基础(二)
已经继承了,为什么还要先call(this);
2017-07-26
源自:进击Node.js基础(二) 2-4
正在回答
使用call可以改变上下文执行对象。
function ReadStream() { stream.Readable.call(this) } util.inherits(ReadStream,stream.Readable) ReadStream.prototype._read = function() { this.push('I') this.push('Love') this.push('jxdxsw.com\n') this.push(null) }
stream.Writable.call(this),执行对象发生了改变,可以调用到你自己重写的_read方法。
慕虎1623356
举报
本教程带你攻破 Nodejs,让 JavaScript流畅运行在服务器端