일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- Variable declaration
- django virtualenv
- activate 오류
- NextJs
- 파이썬 장고
- 파이썬 클래스
- python Django
- Kotlin 클래스 속성정의
- 다중조건문
- 파이썬 반복문
- Python
- Kotlin 조건문
- 자바 기본타입
- 파이썬 제어문
- 파이썬
- 강제 타입변환
- 클래스 속성
- 도전
- Kotlin else if
- github
- 좋은글
- 성공
- Kotlin If
- 장고 가상환경
- 넥스트js
- Kotlin Class
- git
- Python Class
- Kotlin 클래스
- 희망
Archives
- Today
- Total
키모스토리
#14 상속, 프로토타입(Prototype) 본문
반응형
참고 문서 : https://ko.javascript.info/prototype-inheritance
const user = {
name: "Kimo",
hasOwnProperty: function () {
console.log('test')
}
}
console.log(user.name);
console.log(user.hasOwnProperty('name'));
console.log(user.hasOwnProperty('age'));
// 상속, 프로토타입, 클로저
const Bmw = function(color){
const c = color; // this.color을 클로저로 은닉화
this.getColor=function() {
console.log(c);
};
// this.color=color;
}
// 프로토타입 선언방식1
// Bmw.prototype.wheels=4;
// Bmw.prototype.navigation=1;
// Bmw.prototype.drive=function(){
// console.log("drive..");
// };
// Bmw.prototype.stop=function(){
// console.log("Stop!!");
// };
// 프로토타입 선언방식2
Bmw.prototype = {
//construrtor : 방식1은 자동으로 지정되지만, 방식2 에서는 직접 기재해야함
constructor: Bmw,
wheels: 4,
navigator: 1,
drive() {
console.log("drive...");
},
stop() {
console.log("Stop!!");
},
}
// Bmw 생성자 함수로 객체생성
const x5 = new Bmw("red");
const z4 = new Bmw("blue");
console.log(x5.color); // undefined , 클로저로 접근제한
x5.getColor();
x5.drive();
x5.stop();
// red
// drive..
// Stop!!
// Bmw를 상속한 객체인지 검사
console.log(z4 instanceof Bmw);
console.log(z4.constructor === Bmw);
// true
// true
반응형
'Web Devlopment > JavaScript' 카테고리의 다른 글
#16 Promise (0) | 2025.03.20 |
---|---|
#15 클래스(class) (0) | 2025.03.19 |
#13 call, apply, bind (0) | 2025.03.19 |
#12 setTimeout, setInterval (0) | 2025.03.19 |
#10 나머지 매개변수, 전개 구문(Rest parameters, Spread syntax) (0) | 2025.03.19 |