이어서 js가 대상을 향해

1112 단어
js의 계승 function CreateAnimal(name, age) {this.name=name;this.age=age; CreateAnimal.prototype.hobby='노래','this.sayHi=function('heelo')} function CreateDog(name,age,gender) {/name,age는 모두 부류 CreateAnimal.apply(this,[name,age]);this.gender=gender;this.eatFood=function() {alert('jjjjjjjjjjjjj')}
} var dog = new CreateDog('zhang',34,'nam') console.log(dog1.name); console.log(dog1.age); console.log(dog1.proto.hobby);//공, 원형 안의 물건을 계승하지 않습니다. 원형 안에 저장된 물건을 계승하려면 원형 체인으로 계승할 수 있습니다
        console.log(CreateDog.prototype);// CreateDog

원형 체인 실현 계승: 원리는 차이가 많지 않다. 바로 하위 원형의 바늘 방향을 바꾸는 것이다. var animal = new CreateAnimal('아황', 8);//상위 클래스의 객체를 하위 클래스의 원형으로 채우기 CreateDog.prototype = animal; CreateDog.prototype.constructor = CreateDog; 원형 체인을 이용하여 코드를 간소화한다. 예를 들어 구화: vararr=[1,2,3,4,5] Object.prototype.sum = function(){ var sum = 0; for(var i = 0;i sum = sum+parseInt(this[i]); } return sum; } console.log(arr.sum()를 사용하면 결과를 얻을 수 있습니다. 이때 매우 편리합니다. 누구의 합을 요구하든지 간에 이것만 호출하면 됩니다. var see ='2343435'console.log(see.sum()

좋은 웹페이지 즐겨찾기