Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ko]: revise index.md for web/glossary/abstraction #15174

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions files/ko/glossary/abstraction/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
---
title: 추상화
slug: Glossary/Abstraction
l10n:
sourceCommit: ada5fa5ef15eadd44b549ecf906423b4a2092f34
---

{{Glossary("computer programming", "컴퓨터 프로그래밍")}}에서의 **추상화**란 복잡한 소프트웨어 시스템을 효율적으로 설계하고 구현할 수 있는 방법입니다. 추상화는 뒷편 시스템의 기술적 복잡함을 단순한 {{Glossary("API")}} 뒤에 숨깁니다.
{{GlossarySidebar}}

{{Glossary("computer programming", "컴퓨터 프로그래밍")}}에서의 **추상화**란 복잡한 소프트웨어 시스템을 효율적으로 설계하고 구현할 수 있는 방법입니다. 추상화는 뒷편 시스템의 기술적 복잡함을 단순한 {{Glossary("API", "API들")}} 뒤에 숨깁니다.

## 데이터 추상화의 장점

Expand All @@ -16,15 +20,15 @@ slug: Glossary/Abstraction

```js
class ImplementAbstraction {
// method to set values of internal members
// 내부 멤버 변수의 값을 설정하는 메소드
set(x, y) {
this.a = x;
this.b = y;
}

display() {
console.log("a = " + this.a);
console.log("b = " + this.b);
console.log(`a = ${this.a}`);
console.log(`b = ${this.b}`);
}
}

Expand All @@ -35,8 +39,6 @@ obj.display();
// b = 20
```

## 더 알아보기

### 일반적인 지식
## 같이 보기

- Wikipedia의 [Abstraction](<https://en.wikipedia.org/wiki/Abstraction_(computer_science)>)