Skip to Content
자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
book

자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘

by 유동환, 앨런 B. 다우니
June 2018
Beginner to intermediate
184 pages
3h 30m
Korean
Hanbit Media, Inc.
Content preview from 자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
19
1
인터페이스
public int compareTo
(
Integer anotherInteger
)
{
int thisVal
=
this
.
value
;
int anotherVal
=
anotherInteger
.
value
;
return
(
thisVal
<
anotherVal
?
-
1
:
(
thisVal
==
anotherVal
?
0
:
1
));
}
//
다른
메서드
생략
}
이 클래스는
Number
클래스를 확장합니다.
Number
클래스의 메서드와 인스턴스 변수를 상속
하고
Comparable<Integer>
인터페이스를 구현합니다. 따라서
Integer
객체를 인자로 받고
int
를 반환하는
compareTo
메서드를 제공합니다.
클래스가
interface
를 구현한다고 선언하면 컴파일러는
interface
가 정의한 모든 메서드를
제공하는지 확인합니다.
한편,
compareTo ( )
메서드를 구현할 때 종종
?:
형식으로 쓰인 삼항 연산자
ternary
operator
를 사
용합니다. 자세한 내용은
http
://
thinkdast
.
com
/
ternary
를 참고하세요
1.3
List
interface
JCF
List
라는
interface
를 정의하고
ArrayList
LinkedList
라는 두 구현 클래스를 제
공합니다.
interface
List
가 된다는 의미가 ...
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

자바 마이크로서비스를 활용한 SRE : 기업에서 신뢰할 수 있는 마이크로서비스를 위한 패턴

자바 마이크로서비스를 활용한 SRE : 기업에서 신뢰할 수 있는 마이크로서비스를 위한 패턴

조너선 슈나이더

Publisher Resources

ISBN: 9791162240847