Skip to Content
러닝 자바스크립트: ES6로 제대로 입문하는 모던 자바스크립트 웹 개발
book

러닝 자바스크립트: ES6로 제대로 입문하는 모던 자바스크립트 웹 개발

by 한선용, 이선 브라운
July 2017
Beginner to intermediate
464 pages
10h 38m
Korean
Hanbit Media, Inc.
Content preview from 러닝 자바스크립트: ES6로 제대로 입문하는 모던 자바스크립트 웹 개발
239
9
객체와 객체지향 프로그래밍
class
Car
{
toString
() {
return
`${
this
.
make
} ${
this
.
model
}: ${
this
.
vin
}`;
}
//...
이제
Car
의 인스턴스에서
toString
을 호출하면 객체 식별에 필요한 정보를 얻을 수 있습니다.
9.3
다중 상속, 믹스인, 인터페이스
일부 객체지향 언어에서는
다중 상속
multiple
inheritance
이란 기능을 지원합니다. 이 기능은 클래스
가 슈퍼클래스 두 개를 가지는 기능이며, 슈퍼클래스의 슈퍼클래스가 존재하는 일반적인 상속
과는 다릅니다. 다중 상속에는
충돌
의 위험이 있습니다. 예를 들어 어떤 클래스에 두 개의 슈퍼
클래스가 있고, 두 슈퍼클래스에 모두
greet
메서드가 있다면 서브클래스는 어느 쪽의 메서드
를 상속해야 할까요? 다중 상속을 지원하지 않는 언어가 많은 이유는 이런 문제를 피하기 위해
서입니다.
하지만 현실 세계를 생각해 보면 다중 상속을 적용할 수 있는 문제가 많습니다. 예를 들어 자동
차는 운송 수단인 동시에 ‘보험을 들 수 있는’ 대상입니다. 주택에도 보험을 들 수 있지만, 주택
은 운송 수단이 아닙니다. 다중 상속을 지원하지 않는 언어 중에는
인터페이스
interface
개념을 도
입해서 이런 상황에 대처하는 언어가 많습니다.
Car
클래스의
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

웹 애플리케이션 보안: 정찰, 공격, 방어 세 단계로 배우는 웹 애플리케이션 보안의 모든 것

웹 애플리케이션 보안: 정찰, 공격, 방어 세 단계로 배우는 웹 애플리케이션 보안의 모든 것

최용, 앤드루 호프먼

Publisher Resources

ISBN: 9788968483387