이 기사의 예에서는 JavaScript가 Prototype을 사용하여 객체 지향 메서드를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 분석은 다음과 같습니다.
프로토타입은 다른 객체를 가리키는 Function 객체의 속성입니다. 이 개체의 모든 속성과 메서드는 생성자의 인스턴스에 상속됩니다.
동시에 프로토타입에는 생성자를 가리키는 참조 생성자가 있으므로 순환 참조의 프로토타입 체인 구조를 성공적으로 형성합니다.
변경되지 않은 속성과 메서드를 프로토타입 객체에 직접 정의하여 메모리 오버헤드를 절약할 수 있습니다.
function Cat(name, color) { this.name = name; this.color = color; } Cat.prototype.type = 'mammal'; Cat.prototype.eat = function() { console.log('eat fish'); }; var cat1 = new Cat('Kitty', 'white'); var cat2 = new Cat('Smokey', 'black'); console.log(cat1.type); // mammal console.log(cat1.eta === cat2.eta); // TRUE, same reference console.log(cat1.constructor === Cat) // TRUE, from Person.prototype
이 기사가 모든 사람의 JavaScript 프로그래밍 설계에 도움이 되기를 바랍니다.