이 글의 예시에서는 js에서 상속을 구현하는 5가지 방법을 설명합니다. 참고하실 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
1. 상속의 첫 번째 방법: 객체 가장
function Parent(username){ this.username = username; this.hello = function(){ alert(this.username); } } function Child(username,password){ //通过以下3行实现将Parent的属性和方法追加到Child中,从而实现继承 //第一步:this.method是作为一个临时的属性,并且指向Parent所指向的对象, //第二步:执行this.method方法,即执行Parent所指向的对象函数 //第三步:销毁this.method属性,即此时Child就已经拥有了Parent的所有属性和方法 this.method = Parent; this.method(username);//最关键的一行 delete this.method; this.password = password; this.world = function(){ alert(this.password); } } var parent = new Parent("zhangsan"); var child = new Child("lisi","123456"); parent.hello(); child.hello(); child.world();
2. 두 번째 상속 방법: call() 메소드
호출 메소드는 Function 클래스의 메소드입니다
호출 메소드의 첫 번째 매개변수 값은 클래스(메소드)에 나타나는
에 할당됩니다.
호출 메소드의 두 번째 매개변수는 클래스(예: 메소드)에서 허용하는 매개변수에 할당되기 시작합니다.
function test(str){ alert(this.name + " " + str); } var object = new Object(); object.name = "zhangsan"; test.call(object,"langsin");//此时,第一个参数值object传递给了test类(即方法)中出现的this,而第二个参数"langsin"则赋值给了test类(即方法)的str function Parent(username){ this.username = username; this.hello = function(){ alert(this.username); } } function Child(username,password){ Parent.call(this,username); this.password = password; this.world = function(){ alert(this.password); } } var parent = new Parent("zhangsan"); var child = new Child("lisi","123456"); parent.hello(); child.hello(); child.world();
3. 세 번째 상속 방법: apply() 메소드
적용 메소드는 2개의 매개변수를 허용합니다.
A. 첫 번째 매개변수는 호출 메소드의 첫 번째 매개변수와 동일합니다. 즉, 클래스(즉, 메소드)에 나타나는 이
에 할당됩니다.
B. 두 번째 매개변수는 배열 유형입니다. 이 배열의 각 요소는 클래스(즉, 메소드)에서 허용하는 매개변수
function Parent(username){ this.username = username; this.hello = function(){ alert(this.username); } } function Child(username,password){ Parent.apply(this,new Array(username)); this.password = password; this.world = function(){ alert(this.password); } } var parent = new Parent("zhangsan"); var child = new Child("lisi","123456"); parent.hello(); child.hello(); child.world();
4. 상속의 네 번째 방법: 프로토타입 체인 메소드 즉, 하위 클래스는 프로토타입을 사용하여 상위 클래스의 프로토타입을 통해 추가된 모든 속성과 메소드를 Child에 추가하여 상속을 구현합니다
function Person(){ } Person.prototype.hello = "hello"; Person.prototype.sayHello = function(){ alert(this.hello); } function Child(){ } Child.prototype = new Person();//这行的作用是:将Parent中将所有通过prototype追加的属性和方法都追加到Child,从而实现了继承 Child.prototype.world = "world"; Child.prototype.sayWorld = function(){ alert(this.world); } var c = new Child(); c.sayHello(); c.sayWorld();
5. 다섯 번째 상속 방식: 혼합 방식
혼합 호출 방식과 프로토타입 체인 방식
function Parent(hello){ this.hello = hello; } Parent.prototype.sayHello = function(){ alert(this.hello); } function Child(hello,world){ Parent.call(this,hello);//将父类的属性继承过来 this.world = world;//新增一些属性 } Child.prototype = new Parent();//将父类的方法继承过来 Child.prototype.sayWorld = function(){//新增一些方法 alert(this.world); } var c = new Child("zhangsan","lisi"); c.sayHello(); c.sayWorld();
이 기사가 JavaScript 프로그래밍에 종사하는 모든 사람에게 도움이 되기를 바랍니다.