JavaScript 다 중 및 계승 을 위 한 패 키 징 작업 예제
3216 단어 JavaScript다 형이어받다포장 하 다
패키지 캡슐 화
다음 코드 는 봉인 이 라 고 할 수 있 습 니 다.
(function (windows, undefined) {
var i = 0;// , i
})(window, undefined);
상속 상속
(function (windows, undefined) {
//
function Person() { }
Person.prototype.name = "name in Person";
//
function Student() { }
Student.prototype = new Person(); //
Student.prototype.constructor = Student; //
Student.prototype.supr = Person.prototype; //
//
var stu = new Student();
Student.prototype.age = 28;
Student.prototype.name = "name in Student instance";
//
console.log(stu.name); //name in Student instance
console.log(stu.supr.name); //name in Person
console.log(stu.age); //28
})(window, undefined);
온라인 HTML/CSS/JavaScript 코드 실행 도 구 를 사용 합 니 다http://tools.jb51.net/code/HtmlJsRun실행 결 과 는 다음 과 같 습 니 다.다 형 고분자
상속 이 있 으 면 다 태 적 으로 처리 하기 쉽다
//
(function (windows, undefined) {
//
function Person() { }
Person.prototype.name = "name in Person";
Person.prototype.learning = function () {
console.log("learning in Person")
}
//
function Student() { }
Student.prototype = new Person(); //
Student.prototype.constructor = Student; //
Student.prototype.supr = Person.prototype; //
Student.prototype.learning = function () {
console.log("learning in Student");
}
//
function Worker() { }
Worker.prototype = new Person(); //
Worker.prototype.constructor = Worker; //
Worker.prototype.supr = Person.prototype; //
Worker.prototype.learning = function () {
console.log("learning in Worker");
}
//
var personFactory = function (type) {
switch (type) {
case "Worker":
return new Worker();
break;
case "Student":
return new Student();
break;
}
return new Person();
}
//
var person = personFactory("Student");
person.learning(); //learning in Student
person = personFactory("Worker");
person.learning(); //learning in Worker
})(window, undefined);
온라인 HTML/CSS/JavaScript 코드 실행 도 구 를 사용 합 니 다http://tools.jb51.net/code/HtmlJsRun실행 결 과 는 다음 과 같 습 니 다.자 바스 크 립 트 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 자 바스 크 립 트 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
기초 정리 - 1문자 (String) 숫자 (Number) 불린 (Boolean) null undefined 심볼 (Symbol) 큰정수 (BigInt) 따옴표로 묶어 있어야 함 Not-A-Number - 숫자 데이터 / 숫자로 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.