Movatterモバイル変換


[0]ホーム

URL:


Documentation

The Java™ Tutorials
Home Page
« PreviousTrailNext »

The Java Tutorials have been written for JDK 8. Examples and practices described in this page don't take advantage of improvements introduced in later releases and might use technology no longer available.
SeeDev.java for updated tutorials taking advantage of the latest releases.
SeeJava Language Changes for a summary of updated language features in Java SE 9 and subsequent releases.
SeeJDK Release Notes for information about new features, enhancements, and removed or deprecated options for all JDK releases.

Trail: Collections

This section describes the Java Collections Framework. Here, you will learn what collections are and how they can make your job easier and programs better. You'll learn about the core elements — interfaces, implementations, aggregate operations, and algorithms — that comprise the Java Collections Framework.

trail iconIntroduction tells you what collections are, and how they'll make your job easierand your programs better. You'll learn about the core elements thatcomprise the Collections Framework:interfaces,implementationsandalgorithms.

trail iconInterfaces describes thecore collection interfaces, which are the heart and soulof the Java Collections Framework. You'll learn general guidelines foreffective use of these interfaces, including when to use which interface.You'll also learn idioms for each interface that will help you get the mostout of the interfaces.

trail iconAggregate Operations iterate over collections on your behalf, which enable you to write more concise and efficient code that process elements stored in collections.

trail iconImplementations describes the JDK'sgeneral-purpose collection implementationsand tells you when to use which implementation. You'll also learn aboutthewrapper implementations, which add functionality to general-purposeimplementations.

trail iconAlgorithms describes thepolymorphic algorithms provided by the JDK to operateon collections. With any luck you'll never have to write your own sortroutine again!

trail iconCustom Implementations tells you why you might want to write your own collection implementation(instead of using one of the general-purpose implementations provided by theJDK), and how you'd go about it. It's easy with the JDK'sabstractcollection implementations!

trail iconInteroperabilitytells you how the Collections Framework interoperates with older APIs thatpredate the addition of Collections to Java. Also, it tells you how to designnew APIs so that they'll interoperate seamlessly with other new APIs.

« PreviousTOCNext »

About Oracle |Contact Us |Legal Notices |Terms of Use |Your Privacy Rights

Copyright © 1995, 2024 Oracle and/or its affiliates. All rights reserved.

Previous page: Beginning of Tutorial
Next page: Introduction to Collections

[8]ページ先頭

©2009-2025 Movatter.jp