ES6μμ λμ λ ν΄λμ€λ κΈ°μ‘΄ νλ‘ν νμ κΈ°λ°μ ν¨ν΄μ ν΄λμ€ κΈ°λ° κ°μ²΄μ§ν₯ νλ‘κ·Έλλ°μ μ΅μν΄μ§κΈ° μ½λλ‘ μλ‘μ΄ κ°μ²΄ μμ± λ©μ»€λμ¦μ μ μνλ€.
κΈ°μ‘΄ νλ‘ν νμ κΈ°λ° κ°μ²΄μ§ν₯ λͺ¨λΈμ νμ§νκ³ μλ‘κ² ν΄λμ€ κΈ°λ° κ°μ²΄μ§ν₯λͺ¨λΈμ μ 곡νλ κ²μ μλλ€. ν΄λμ€λ μμ±μ ν¨μμ λ§€μ° μ μ¬νκ² λμνμ§λ§ λ€μ λͺ κ°μ§ μ°¨μ΄κ° μλ€.
ν΄λμ€λ class ν€μλλ₯Ό μ¬μ©ν΄ μ μνλ©° ν΄λμ€ μ΄λ¦μ μμ±μ ν¨μμ λ§μ°¬κ°μ§λ‘ νμ€μΉΌ μΌμ΄μ€λ₯Ό μ¬μ©νλ κ²μ΄ μΌλ°μ μ΄λ€.
// ν΄λμ€ μ μΈλ¬Έ
class Person {}
ν΄λμ€λ μΌκΈ κ°μ²΄λ‘μ λ€μκ³Ό κ°μ νΉμ§μ κ°λλ€.
ν΄λμ€λ ν¨μλ‘ νκ°λκΈ° λλ¬Έμ λ°νμ μ΄μ μ λ¨Όμ νκ°λμ΄ ν¨μ κ°μ²΄λ₯Ό μμ±νλ€. μ΄λ ν΄λμ€κ° νκ°λμ΄ μμ±λ ν¨μ κ°μ²΄λ μμ±μ ν¨μλ‘μ νΈμΆν μ μλ ν¨μ, μ¦ constructor μ΄λ€. μμ±μ ν¨μλ‘μ νΈμΆν μ μλ ν¨μλ ν¨μ μ μκ° νκ°λμ΄ ν¨μ κ°μ²΄λ₯Ό μμ±νλ μμ μ νλ‘ν νμ λ λλΆμ΄ μμ±λλ€.
const Person = '';
{
// νΈμ΄μ€ν
μ΄ λ°μνμ§ μλλ€λ©΄ ''μ΄ μΆλ ₯λμ΄μΌ νλ€.
console.log(Person);
// ReferenceError: Cannot access 'Person' before initialization
// ν΄λμ€ μ μΈλ¬Έ
class Person {}
}
ν΄λμ€ μ μΈλ¬Έλ λ³μ μ μΈ, ν¨μ μ μμ λ§μ°¬κ°μ§λ‘ νΈμ΄μ€ν
μ΄ λ°μνλ€. λ¨, ν΄λμ€λ let, const ν€μλλ‘ μ μΈν λ³μμ²λΌ νΈμ΄μ€ν
λμ΄ μ μΈκ³Ό μ΄κΈ°νκ° λΆλ¦¬λμ΄ μ§νλκΈ° λλ¬Έμ TDZ(μΌμμ μ¬κ°μ§λ)μ λΉ μ§κ² λμ΄ νΈμ΄μ€ν
μ΄ λ°μνμ§ μλ κ²μ²λΌ λμνλ€.
ν΄λμ€λ μμ±μ ν¨μμ΄λ©° new μ°μ°μμ ν¨κ» νΈμΆλμ΄ μΈμ€ν΄μ€λ₯Ό μμ±νλ€.
ν¨μλ new μ°μ°μμ μ¬μ© μ¬λΆμ λ°λΌ μΌλ° ν¨μλ‘ νΈμΆλκ±°λ μΈμ€ν΄μ€ μμ±μ μν μμ±μ ν¨μλ‘ νΈμΆλμ§λ§ ν΄λμ€λ μΈμ€ν΄μ€λ₯Ό μμ±νλ κ²μ΄ μ μΌν μ‘΄μ¬ μ΄μ μ΄λ―λ‘ λ°λμ new μ°μ°μμ ν¨κ» νΈμΆν΄μΌ νλ€.
class Person {}
// μΈμ€ν΄μ€ μμ±
const me = new Person();
console.log(me); // Person {}
// ν΄λμ€λ₯Ό new μ°μ°μ μμ΄ νΈμΆνλ©΄ νμ
μλ¬κ° λ°μνλ€.
const you = Person();
// TypeError: Class constructor Foo cannot be invoked without 'new'
ν΄λμ€ λͺΈμ²΄μλ 0κ° μ΄μμ λ©μλλ§ μ μΈν μ μλ€.
ν΄λμ€ λͺΈμ²΄μμ μ μν μ μλ λ©μλλ constructor(μμ±μ), νλ‘ν νμ
λ©μλ, μ μ λ©μλ μΈκ°μ§κ° μλ€.
constructorλ μΈμ€ν΄μ€λ₯Ό μμ±νκ³ μ΄κΈ°ννκΈ° μν νΉμν λ©μλλ€. construcorλ μ΄λ¦μ λ³κ²½ν μ μλ€.
class Person {
// μμ±μ
constructor(name) {
// μΈμ€ν΄μ€ μμ± λ° μ΄κΈ°ν
this.name = name;
}
}
constructor(νλ‘ν νμ μ constuctor νλ‘νΌν°μ λ€λ¦)λ λ©μλλ‘ ν΄μλλκ²μ΄ μλλΌ ν΄λμ€κ° νκ°λμ΄ μμ±ν ν¨μ κ°μ²΄ μ½λμ μΌλΆκ° λλ€. μ¦, ν΄λμ€ μ μκ° νκ°λλ©΄ constructorμ κΈ°μ λ λμμ νλ ν¨μ κ°μ²΄κ° μμ±λλ€.
consturctorλ λ³λμ λ°νλ¬Έμ κ°μ§ μμμΌ νλ€. 17.2.3μ μμ βμμ±μ ν¨μμ μΈμ€ν΄μ€ μμ± κ³Όμ βμμ μ΄ν΄λ³΄μλ―μ΄ new μ°μ°μμ ν¨κ» ν΄λμ€κ° νΈμΆλλ©΄ μμ±μ ν¨μμ λμΌνκ² μ묡μ μΌλ‘ this, μ¦ μΈμ€ν΄μ€λ₯Ό λ°ννκΈ° λλ¬Έμ thisκ° μλ λ€λ₯Έ κ°μ²΄λ₯Ό λͺ μμ μΌλ‘ λ°ννλ©΄ ν΄λμ€μ κΈ°λ³Έλμμ νΌμνλ€.
ν΄λμ€ λͺΈμ²΄μμ μ μν λ©μλλ μμ±μ ν¨μμ μν κ°μ²΄ μμ± λ°©μκ³Όλ λ€λ₯΄κ² ν΄λμ€μ prototype νλ‘νΌν°μ λ©μλλ₯Ό μΆκ°νμ§ μμλ κΈ°λ³Έμ μΌλ‘ νλ‘ν νμ λ©μλκ° λλ€.
class Person {
// μμ±μ
constructor(name) {
// μΈμ€ν΄μ€ μμ± λ° μ΄κΈ°ν
this.name = name;
}
// νλ‘ν νμ
λ©μλ
sayHi() {
console.log(`Hi! My name is ${this.name}`);
}
}
const me = new Person('Lee');
me.sayHi(); // Hi! My name is Lee
// me κ°μ²΄μ νλ‘ν νμ
μ Person.prototypeμ΄λ€.
Object.getPrototypeOf(me) === Person.prototype; // -> true
me instanceof Person; // -> true
// Person.prototypeμ νλ‘ν νμ
μ Object.prototypeμ΄λ€.
Object.getPrototypeOf(Person.prototype) === Object.prototype; // -> true
me instanceof Object; // -> true
// me κ°μ²΄μ constructorλ Person ν΄λμ€λ€.
me.constructor === Person; // -> true
μ¦ ν΄λμ€κ° μμ±ν μΈμ€ν΄μ€λ νλ‘ν νμ 체μΈμ μΌμμ΄ λμ΄ νλ‘ν νμ λ©μλλ₯Ό μμλ°μ μ¬μ©ν μ μλ€.
μ μ λ©μλλ μΈμ€ν΄μ€λ₯Ό μμ±νμ§ μμλ νΈμΆν μ μλ λ©μλλ₯Ό λ§νλ€. ν΄λμ€μμλ λ©μλμ static
ν€μλλ₯Ό λΆμ΄λ©΄ μ μ λ©μλκ° λλ€.
class Person {
// μμ±μ
constructor(name) {
// μΈμ€ν΄μ€ μμ± λ° μ΄κΈ°ν
this.name = name;
}
// μ μ λ©μλ
static sayHi() {
console.log('Hi!');
}
}
// μ μ λ©μλλ ν΄λμ€λ‘ νΈμΆνλ€.
// μ μ λ©μλλ μΈμ€ν΄μ€ μμ΄λ νΈμΆν μ μλ€.
Person.sayHi(); // Hi!
// μΈμ€ν΄μ€ μμ±
const me = new Person('Lee');
me.sayHi(); // TypeError: me.sayHi is not a function
μ μ λ©μλλ μΈμ€ν΄μ€λ‘ νΈμΆν μ μκ³ ν΄λμ€λ‘ νΈμΆνλ€. μ μ λ©μλκ° λ°μΈλ© λ ν΄λμ€λ μΈμ€ν΄μ€μ νλ‘ν νμ 체μΈμμ μ‘΄μ¬νμ§ μκΈ° λλ¬Έμ΄λ€.
μΈμ€ν΄μ€ νλ‘νΌν°λ constructor λ΄λΆμμ μ μν΄μΌ νλ€. constructor λ΄λΆμμ thisμ μΆκ°ν νλ‘νΌν°λ μΈμ λ ν΄λμ€κ° μμ±ν μΈμ€ν΄μ€μ νλ‘νΌν°κ° λλ€.
class Person {
constructor(name) {
// μΈμ€ν΄μ€ νλ‘νΌν°
this.name = name;
}
}
const me = new Person('Lee');
console.log(me); // Person {name: "Lee"}
class Person {
constructor(name) {
// μΈμ€ν΄μ€ νλ‘νΌν°
this.name = name; // name νλ‘νΌν°λ publicνλ€.
}
}
const me = new Person('Lee');
// nameμ publicνλ€.
console.log(me.name); // Lee
μ κ·Όμ νλ‘νΌν°λ μ체μ μΌλ‘λ κ°μ κ°μ§ μκ³ λ€λ₯Έ λ°μ΄ν° νλ‘νΌν°μ κ°μ μ½κ±°λ μ μ₯ν λ μ¬μ©νλ μ κ·Όμ ν¨μ, μ¦ getter ν¨μμ setter ν¨μλ‘ κ΅¬μ±λμ΄ μλ€.
getterλ μ΄λ¦ κ·Έλλ‘ λ¬΄μΈκ°λ₯Ό μ·¨λν λ μ¬μ©νλ―λ‘ λ°λμ 무μΈκ°λ₯Ό λ°νν΄μΌ νκ³ setterλ 무μΈκ°λ₯Ό νλ‘νΌν°μ ν λΉ ν΄μΌν λ μ¬μ©νλ―λ‘ λ°λμ 맀κ°λ³μκ° μμ΄μΌ νλ€. setterλ λ¨ νλμ κ°λ§ ν λΉλ°κΈ° λλ¬Έμ λ¨ νλμ 맀κ°λ³μλ§ μ μΈν μ μλ€.
ν΄λμ€μ λ©μλλ κΈ°λ³Έμ μΌλ‘ νλ‘ν νμ λ©μλκ° λλ€. λ°λΌμ ν΄λμ€μ μ κ·Όμ νλ‘νΌν° λν μΈμ€ν΄μ€ νλ‘νΌν°κ° μλ νλ‘ν νμ μ νλ‘νΌν°κ° λλ€.
ν΄λμ€ νλλ ν΄λμ€ κΈ°λ° κ°μ²΄μ§ν₯ μΈμ΄μμ ν΄λμ€κ° μμ±ν μΈμ€ν΄μ€μ νλ‘νΌν°λ₯Ό κ°λ¦¬ν€λ μ©μ΄λ€. μλ°μ€ν¬λ¦½νΈμμλ μλ‘μ΄ νμ€ μ¬μμΈ βClass field declarationsβκ° μ μλμλ€. μ΄λ‘ μΈν΄ μΈμ€ν΄μ€ νλ‘νΌν°λ₯Ό μ μνλ λ°©μμ λ κ°μ§κ° λμλ€.
μΈμ€ν΄μ€λ₯Ό μμ±ν λ μΈλΆ μ΄κΈ°κ°μΌλ‘ ν΄λμ€ νλλ₯Ό μ΄κΈ°νν νμκ° μλ€λ©΄ constuctorμμ μΈμ€ν΄μ€ νλ‘νΌν°λ₯Ό μ μνλ κΈ°μ‘΄λ°©μμ μ¬μ©νκ³ , μΈμ€ν΄μ€λ₯Ό μμ±ν λ μΈλΆ μ΄κΈ°κ°μΌλ‘ ν΄λμ€νλλ₯Ό μ΄κΈ°νν νμκ° μλ€λ©΄ κΈ°μ‘΄μ constructorμμ μΈμ€ν΄μ€ νλ‘νΌν°λ₯Ό μ μνλ λ°©μκ³Ό ν΄λμ€ νλ μ μ μ μ λͺ¨λ μ¬μ©ν μ μλ€.
μλ°μ€ν¬λ¦½νΈμμλ private νλλ₯Ό μ μν μ μλ μλ‘μ΄ νμ€ μ¬μμ΄ μ μλμ΄ μλ€. private νλμ μ λμλ #μ λΆμ¬μ€λ€. private νλλ₯Ό μ°Έμ‘°ν λλ #μ λΆμ¬μ£Όμ΄μΌ νλ€. private νλλ ν΄λμ€ λ΄λΆμμλ§ μ°Έμ‘°ν μ μλ€. λν, private νλλ λ°λμ ν΄λμ€ λͺΈμ²΄μ μ μν΄μΌ νλ€.
class Person {
// private νλ μ μ
#name = '';
constructor(name) {
// private νλ μ°Έμ‘°
this.#name = name;
}
}
const me = new Person('Lee');
// private νλ #nameμ ν΄λμ€ μΈλΆμμ μ°Έμ‘°ν μ μλ€.
console.log(me.#name);
// SyntaxError: Private field '#name' must be declared in an enclosing class
static publicνλ, static private νλ, sstatic private λ©μλλ₯Ό μ μν μ μλ μλ‘μ΄ νμ€ μ¬μμΈ βStatic class featuresβκ° μ μλμ΄ μλ€.
class MyMath {
// static public νλ μ μ
static PI = 22 / 7;
// static private νλ μ μ
static #num = 10;
// static λ©μλ
static increment() {
return ++MyMath.#num;
}
}
console.log(MyMath.PI); // 3.142857142857143
console.log(MyMath.increment()); // 11
νλ‘ν νμ κΈ°λ° μμμ νλ‘ν νμ 체μΈμ ν΅ν΄ λ€λ₯Έ κ°μ²΄μ μμ°μ μμλ°λ κ°λ μ΄μ§λ§ μμμ μν ν΄λμ€ νμ₯μ κΈ°μ‘΄ ν΄λμ€λ₯Ό μμλ°μ μλ‘μ΄ ν΄λμ€λ₯Ό νμ₯νμ¬ μ μνλ κ²μ΄λ€.
extends ν€μλμ μν μ μνΌν΄λμ€μ μλΈν΄λμ€ κ°μ μμ κ΄κ³λ₯Ό μ€μ νλ κ²μ΄λ€. μμμ ν΅ν΄ νμ₯λ ν΄λμ€λ₯Ό μλΈν΄λμ€λΌ λΆλ₯΄κ³ , μλΈν΄λμ€μκ² μμλ ν΄λμ€λ₯Ό μνΌν΄λμ€λΌκ³ λΆλ₯Έλ€.λ
// μνΌ(λ² μ΄μ€/λΆλͺ¨)ν΄λμ€
class Base {}
// μλΈ(νμ/μμ)ν΄λμ€
class Derived extends Base {}
μνΌν΄λμ€μ μλΈν΄λμ€λ μΈμ€ν΄μ€μ νλ‘ν νμ 체μΈλΏ μλλΌ ν΄λμ€ κ°μ νλ‘ν νμ 체μΈλ μμ±νλ€. μ΄λ₯Ό ν΅ν΄ νλ‘ν νμ λ©μλ, μ μ λ©μλ λͺ¨λ μμμ΄ κ°λ₯νλ€.
function Base1() {}
class Base2 {}
let condition = true;
// 쑰건μ λ°λΌ λμ μΌλ‘ μμ λμμ κ²°μ νλ μλΈν΄λμ€
class Derived extends (condition ? Base1 : Base2) {}
const derived = new Derived();
console.log(derived); // Derived {}
console.log(derived instanceof Base1); // true
console.log(derived instanceof Base2); // false
extends ν€μλ λ€μμλ ν΄λμ€λΏλ§μ΄ μλλΌ [[Construct]] λ΄λΆ λ©μλλ₯Ό κ°λ ν¨μ κ°μ²΄λ‘ νκ°λ μ μλ λͺ¨λ ννμμ μ¬μ©ν μ μλ€. μ΄λ₯Ό ν΅ν΄ λμ μΌλ‘ μμλ°μ λμμ κ²°μ ν μ μλ€.
μνΌν΄λμ€μμ consturctorλ₯Ό μλ΅νλ©΄ λΉ κ°μ²΄κ° μμ±λλ€. μλΈν΄λμ€ λ§μ°¬κ°μ§λ‘ constructorλ₯Ό μλ΅νλ©΄ ν΄λμ€μ λ€μκ³Ό κ°μ constructorκ° μ묡μ μΌλ‘ μ μλλ€.
constructor(...args) { super(...args); }
super ν€μλλ ν¨μμ²λΌ νΈμΆν μλ μκ³ thisμ κ°μ΄ μλ³μμ²λΌ μ°Έμ‘°ν μλ μλ€. super ν€μλλ λ€μκ³Ό κ°μ΄ λμνλ€.
μλΈν΄λμ€μμ constructorμ μλ΅νμ§ μλ κ²½μ° μλΈν΄λμ€μ constructorμμλ λ°λμ superλ₯Ό νΈμΆν΄μΌ νλ€.
class Base {}
class Derived extends Base {
constructor() {
// ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor
console.log('constructor call');
}
}
const derived = new Derived();
μλΈν΄λμ€μ constructorμμ superλ₯Ό νΈμΆνκΈ° μ μλ thisλ₯Ό μ°Έμ‘°ν μ μλ€.
class Base {}
class Derived extends Base {
constructor() {
// ReferenceError: Must call super constructor in derived class before accessing 'this' or returning from derived constructor
this.a = 1;
super();
}
}
const derived = new Derived(1);
superλ λ°λμ μλΈν΄λμ€μ constructorμμλ§ νΈμΆνλ€. μλΈν΄λμ€κ° μλ ν΄λμ€μ constructorλ ν¨μμμ superλ₯Ό νΈμΆνλ©΄ μλ¬κ° λ°μνλ€.
class Base {
constructor() {
super(); // SyntaxError: 'super' keyword unexpected here
}
}
function Foo() {
super(); // SyntaxError: 'super' keyword unexpected here
}
μλΈ ν΄λμ€μ νλ‘ν νμ λ©μλ λ΄μμ super.sayHiλ μνΌν΄λμ€μ νλ‘ν νμ λ©μλ sayHiλ₯Ό κ°λ¦¬ν¨λ€.
// μνΌν΄λμ€
class Base {
constructor(name) {
this.name = name;
}
sayHi() {
return `Hi! ${this.name}`;
}
}
// μλΈν΄λμ€
class Derived extends Base {
sayHi() {
// super.sayHiλ μνΌν΄λμ€μ νλ‘ν νμ
λ©μλλ₯Ό κ°λ¦¬ν¨λ€.
return `${super.sayHi()}. how are you doing?`;
}
}
const derived = new Derived('Lee');
console.log(derived.sayHi()); // Hi! Lee. how are you doing?
μλΈν΄λμ€μ μ μ λ©μλ λ΄μμ super.sayHiλ μνΌν΄λμ€μ μ μ λ©μλ sayHiλ₯Ό κ°λ¦¬ν¨λ€.
// μνΌν΄λμ€
class Base {
static sayHi() {
return 'Hi!';
}
}
// μλΈν΄λμ€
class Derived extends Base {
static sayHi() {
// super.sayHiλ μνΌν΄λμ€μ μ μ λ©μλλ₯Ό κ°λ¦¬ν¨λ€.
return `${super.sayHi()} how are you doing?`;
}
}
console.log(Derived.sayHi()); // Hi! how are you doing?
μλΈν΄λμ€μ ColorRectangleμ΄ new μ°μ°μμ ν¨κ» νΈμΆλλ©΄ λ€μ κ³Όμ μ ν΅ν΄ μΈμ€ν΄μ€λ₯Ό μμ±νλ€.
// μνΌν΄λμ€
class Rectangle {
constructor(width, height) {
this.width = width;
this.height = height;
}
getArea() {
return this.width * this.height;
}
toString() {
return `width = ${this.width}, height = ${this.height}`;
}
}
// μλΈν΄λμ€
class ColorRectangle extends Rectangle {
constructor(width, height, color) {
super(width, height);
this.color = color;
}
// λ©μλ μ€λ²λΌμ΄λ©
toString() {
return super.toString() + `, color = ${this.color}`;
}
}
const colorRectangle = new ColorRectangle(2, 4, 'red');
console.log(colorRectangle); // ColorRectangle {width: 2, height: 4, color: "red"}
// μμμ ν΅ν΄ getArea λ©μλλ₯Ό νΈμΆ
console.log(colorRectangle.getArea()); // 8
// μ€λ²λΌμ΄λ©λ toString λ©μλλ₯Ό νΈμΆ
console.log(colorRectangle.toString()); // width = 2, height = 4, color = red
μλΈν΄λμ€μ super νΈμΆ
λ€λ₯Έ ν΄λμ€λ₯Ό μμλ°μ§ μλ ν΄λμ€(κ·Έλ¦¬κ³ μμ±μ ν¨μ)λ new μ°μ°μκ° ν¨κ» νΈμΆλμμ λ μ묡μ μΌλ‘ λΉ κ°μ²΄, μ¦ μΈμ€ν΄μ€λ₯Ό μμ±νκ³ μ΄λ₯Ό thisμ λ°μΈλ©νλ€. νμ§λ§ μλΈν΄λμ€λ μμ μ΄ μ§μ μΈμ€ν΄μ€λ₯Ό μμ±νμ§ μκ³ μνΌν΄λμ€μκ² μΈμ€ν΄μ€ μμ±μ μμνλ€. μ΄κ²μ΄ λ°λ‘ μλΈν΄λμ€μ constructorμμ λ°λμ superλ₯Ό νΈμΆν΄μΌ νλ μ΄μ λ€.
μνΌν΄λμ€μ μΈμ€ν΄μ€ μμ±κ³Ό this λ°μΈλ©
μνΌν΄λμ€ constructorμ λ΄λΆμ thisλ μμ±λ μΈμ€ν΄μ€(λΉ κ°μ²΄)λ₯Ό κ°λ¦¬ν¨λ€. μ΄ λ μΈμ€ν΄μ€λ new.targetμ΄ κ°λ¦¬ν€λ μλΈν΄λμ€κ° μμ±ν κ²μΌλ‘ μ²λ¦¬λλ€. λ°λΌμ μμ±λ μΈμ€ν΄μ€μ νλ‘ν νμ μ μνΌν΄λμ€μ prototype νλ‘νΌν°κ° κ°λ¦¬ν€λ κ°μ²΄(Rectangle.prototype)κ° μλλΌ new.target, μ¦ μλΈν΄λμ€μ prototype νλ‘νΌν°κ° κ°λ¦¬ν€λ κ°μ²΄(ColorRectangle.prototype)μ΄λ€.
μνΌν΄λμ€μ μΈμ€ν΄μ€ μ΄κΈ°ν
μνΌν΄λμ€μ constructorκ° μ€νλμ΄ thisμ λ°μΈλ©λμ΄ μλ μΈμ€ν΄μ€λ₯Ό μ΄κΈ°ννλ€. μ¦, thisμ λ°μΈλ© λμ΄ μλ μΈμ€ν΄μ€μ νλ‘νΌν°λ₯Ό μΆκ°νκ³ constructorκ° μΈμλ‘ μ λ¬λ°μ μ΄κΈ°κ°μΌλ‘ μΈμ€ν΄μ€μ νλ‘νΌν°λ₯Ό μ΄κΈ°ννλ€.
μλΈν΄λμ€ constructorλ‘μ 볡κ·μ this λ°μΈλ©
superμ νΈμΆμ μ’ λ£λκ³ μ μ΄ νλ¦μ΄ μλΈν΄λμ€ constructorλ‘ λμμ¨λ€. μ΄λ superκ° λ°νν μΈμ€ν΄μ€κ° thisμ λ°μΈλ©λλ€. μλΈν΄λμ€λ λ³λμ μΈμ€ν΄μ€λ₯Ό μμ±νμ§ μκ³ superκ° λ°νν μΈμ€ν΄μ€λ₯Ό thisμ λ°μΈλ©νμ¬ κ·Έλλ‘ μ¬μ©νλ€. μ΄μ²λΌ superκ° νΈμΆλμ§ μμΌλ©΄ μΈμ€ν΄μ€κ° μμ±λμ§ μμΌλ©°, this λ°μΈλ©λ ν μ μλ€. μλΈν΄λμ€μ constructorμμ superλ₯Ό νΈμΆνκΈ° μ μλthisλ₯Ό μ°Έμ‘°ν μ μλ μ΄μ κ° λ°λ‘ μ΄ λλ¬Έμ΄λ€.
μλΈν΄λμ€μ μΈμ€ν΄μ€ μ΄κΈ°ν
super νΈμΆ μ΄ν, μλΈν΄λμ€μ consstructorμ κΈ°μ λμ΄ μλ μΈμ€ν΄μ€ μ΄κΈ°νκ° μ€νλλ€. μ¦, thisμ λ°μΈλ©λμ΄ μλ μΈμ€ν΄μ€μ νλ‘νΌν°λ₯Ό μΆκ°νκ³ constructorκ° μΈμλ‘ μ λ¬λ°μ μ΄κΈ°κ°μΌλ‘ μΈμ€ν΄μ€μ νλ‘νΌν°λ₯Ό μ΄κΈ°ννλ€.
μΈμ€ν΄μ€ λ°ν
ν΄λμ€μ λͺ¨λ μ²λ¦¬κ° λλλ©΄ μμ±λ μΈμ€ν΄μ€κ° λ°μΈλ©λ thisκ° μ묡μ μΌλ‘ λ°νλλ€.
νμ€λΉνΈμΈ κ°μ²΄ λν [[Construct]] λ΄λΆ λ©μλλ₯Ό κ°λ μμ±μ ν¨μμ΄λ―λ‘ extends ν€μλλ₯Ό μ¬μ©νμ¬ νμ₯ν μ μλ€.