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

js uses delete to implement inheritance sample code_javascript skills

WBOY
Release: 2016-05-16 16:47:24
Original
1148 people have browsed it
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("----------------");
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template