프로토타입 정의 함수에서 Private 멤버 변수에 액세스
JavaScript에서는 클래스 생성자 내부에 메서드를 정의할 때 private에 액세스할 수 있습니다. 생성자 내에서 선언된 변수 그러나 프로토타입에서 메소드를 정의할 때 이러한 개인 변수에 액세스하는 것은 문제가 됩니다.
설명:
<code class="js">function TestClass() { var privateField = "hello"; this.nonProtoHello = function() { alert(privateField); }; } TestClass.prototype.prototypeHello = function() { alert(privateField); };</code>
t.nonProtoHello()를 호출하면 개인 privateField에 올바르게 액세스하지만 t.prototypeHello () 오류가 발생합니다. 이는 프로토타입 정의 메서드가 생성자의 범위 내에서 정의되지 않아 해당 지역 변수에 액세스할 수 없기 때문입니다.
안타깝게도 프로토타입 정의 함수에서 전용 변수에 직접 액세스할 수 있는 방법은 없습니다. 그러나 getter 및 setter를 사용하면 비슷한 기능을 얻을 수 있습니다.
<code class="js">function Person(name, secret) { // Public this.name = name; // Private var secret = secret; // Public methods have access to private members this.setSecret = function(s) { secret = s; } this.getSecret = function() { return secret; } } // Must use getters/setters Person.prototype.spillSecret = function() { alert(this.getSecret()); };</code>
이 예에서 비공개 변수 secret은 getter 및 setter 함수를 통해 프로토타입 정의 메서드에 액세스할 수 있습니다.
위 내용은 JavaScript의 프로토타입 정의 함수에서 비공개 멤버에 어떻게 액세스할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!