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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
|
---
title: class
slug: Web/JavaScript/Reference/Statements/class
tags:
- Classes
- Declaration
- ECMAScript 2015
- JavaScript
- Reference
- Statement
translation_of: Web/JavaScript/Reference/Statements/class
---
<div>{{jsSidebar("Statements")}}</div>
<p><strong><code>class</code> 선언</strong>은 프로토타입 기반 상속을 사용하여, 주어진 이름의 새로운 클래스를 만듭니다.</p>
<div>{{EmbedInteractiveExample("pages/js/statement-class.html")}}</div>
<div class="noinclude">
<p>{{jsxref("Operators/class", "클래스 표현", "", 1)}}을 사용하여 클래스를 정의할 수도 있습니다. 표현식과 달리 선언문으로는 같은 클래스를 다시 선언하면 오류가 발생합니다.</p>
</div>
<h2 id="구문">구문</h2>
<pre class="syntaxbox">class <em>name</em> [extends] {
// class body
}
</pre>
<h2 id="설명">설명</h2>
<p>클래스 본문은 <a href="/ko/docs/Web/JavaScript/Reference/Strict_mode">엄격 모드</a>에서 실행됩니다. 생성자 속성은 선택 사항입니다..</p>
<p>클래스 선언은 {{jsxref("Statements/function", "함수 선언", "", 0)}}과 달리 {{Glossary("Hoisting", "호이스팅")}}의 대상이 아닙니다.</p>
<h2 id="예제">예제</h2>
<h3 id="간단한_클래스_선언">간단한 클래스 선언</h3>
<p>다음 예제는 우선 <code>Polygon</code> 클래스를 정의하고, <code>Square</code>라는 이름의 새로운 클래스가 <code>Polygon</code>을 상속합니다. 생성자 내부의 <code>super()</code>는 생성자 내에서만, 그리고 {{jsxref("Operators/this", "this")}} 키워드를 사용하기 전에만 쓸 수 있다는 점을 주의하세요.</p>
<pre class="brush: js">class Polygon {
constructor(height, width) {
this.name = 'Polygon';
this.height = height;
this.width = width;
}
}
class Square extends Polygon {
constructor(length) {
super(length, length);
this.name = 'Square';
}
}</pre>
<div class="warning">
<h3 id="같은_클래스를_두_번_선언하려고_시도할_때">같은 클래스를 두 번 선언하려고 시도할 때</h3>
<p>클래스 선언문으로 같은 클래스를 두 번 선언하면 오류가 발생합니다.</p>
<pre class="brush: js">class Foo {};
class Foo {}; // Uncaught SyntaxError: Identifier 'Foo' has already been declared
</pre>
<p>이전에 표현식으로 정의한 경우에도 오류가 발생합니다.</p>
<pre class="brush: js">var Foo = class {};
class Foo {}; // Uncaught TypeError: Identifier 'Foo' has already been declared
</pre>
</div>
<h2 id="명세">명세</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('ES2015', '#sec-class-definitions', 'Class definitions')}}</td>
<td>{{Spec2('ES2015')}}</td>
<td>Initial definition.</td>
</tr>
<tr>
<td>{{SpecName('ES2016', '#sec-class-definitions', 'Class definitions')}}</td>
<td>{{Spec2('ES2016')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('ES2017', '#sec-class-definitions', 'Class definitions')}}</td>
<td>{{Spec2('ES2017')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-class-definitions', 'Class definitions')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
<p>{{Compat("javascript.statements.class")}}</p>
<h2 id="참조">참조</h2>
<ul>
<li>{{jsxref("Statements/function", "function")}} 선언문</li>
<li>{{jsxref("Operators/class", "class")}} 표현식</li>
<li><a href="/ko/docs/Web/JavaScript/Reference/Classes">클래스</a></li>
</ul>
|