ECMAScript3的原型

function Super(){ // 父类

}
function Sub(){ // 子类 }
Sub.prototype = new Super();
Sub.prototype.constructor = Sub;
var sub = new Sub();
console.log('Sub.prototype.constructor===Sub',Sub.prototype.constructor===Sub); // true
console.log('sub.__proto__==Sub.prototype',sub.__proto__==Sub.prototype); // true
console.log('Sub.prototype.__proto__===Super.prototype',Sub.prototype.__proto__===Super.prototype); // true
上一篇:使用 Windows 窗体 TextBox 控件创建密码文本框


下一篇:6.2 CUDA streams