Home  >  Article  >  Web Front-end  >  js uses delete to implement inheritance sample code_javascript skills

js uses delete to implement inheritance sample code_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:47:241140browse
Copy code The code is as follows:

//Use object impersonation to implement js inheritance
function A (color) {
this.Acolor = color;
this.AshowColor = function() {
document.writeln("Acolor: " this.Acolor);
}
}

function B(color, name) {
//Assign newMethod to A and call A’s constructor
this.newMethod = A;
this.newMethod(color);
/ /Then delete the reference to A so that he cannot be called later
delete this.newMethod;

this.Bname = name;
this.BshowName = function() {
document.writeln ("Bname: " this.Bname);
}
}

var objA = new A("red");
objA.AshowColor();
document.writeln ("----------------");
var objB = new B("black", "demo");
objB.AshowColor();
objB.BshowName();
document.writeln("----------------");
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn