aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/prototype-based_programming/index.html
blob: a01cd24f148fedf95e41c52611d3351c384ef5e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
title: 프로토타입 기반 프로그래밍
slug: Glossary/Prototype-based_programming
tags:
  - CodingScripting
  - Glossary
translation_of: Glossary/Prototype-based_programming
---
<p><strong>프로토타입 기반 프로그래밍</strong>은 {{Glossary("OOP", "객체 지향 프로그래밍")}}과 달리 클래스를 명확히 정의하지 않아도 되며, 속성과 메서드를 다른 클래스의 인스턴스나 빈 객체에 추가하는 작업을 덜 수 있는 프로그래밍 스타일 입니다.</p>

<p>간단히 말하면 이 프로그래밍 스타일은 어떤 {{Glossary('Object', '객체')}}를 생성할 때 처음 그 객체의 {{Glossary('Class', '클래스')}}를 정의하지 않는 것을 허용합니다.</p>

<h2 id="더_배우기">더 배우기</h2>

<h3 id="일반_지식">일반 지식</h3>

<ul>
 <li>{{Interwiki("wikipedia", "프로토타입_기반_프로그래밍", "프로토타입 기반 프로그래밍")}} on 위키피디아</li>
</ul>