<< Chapter < Page Chapter >> Page >
This module discusses and illustrates the use of the Comparator interface. The sorting order established by a Comparator may be different or may be the same as the natural order. A Comparator can be used to establish a sorting order for objects that don't have a natural ordering. The use of a Comparator is an alternative to the implementation of the Comparable interface.

Revised: Wed Apr 06 23:01:46 CDT 2016

This page is included in the following Books:

Table of contents

Preface

This module is one of a series of modules designed to teach you about Object-Oriented Programming (OOP) in general and the Java Collectionsframework in particular.

This module discusses and illustrates the use of the Comparator interface. The sorting order established by a Comparator may be different or may be the same as the natural order. A Comparator can be used to establish a sorting order for objects that don't have a natural ordering. The use of a Comparator is an alternative to the implementation of the Comparable interface.

This module is also the first of several modules on the Comparator interface. The purpose of the modules in this group is to teach you about theinteractions between the Comparator interface and the Collections Framework , particularly with respect to the Set , SortedSet , and SortedMap interfaces of the Collections Framework. This module discusses Set and SortedSet . A discussion of SortedMap will be deferred to a future module.

In addition to studying these modules, I strongly recommend that you study the Collections Trail in Oracle's Java Tutorials . The modules in this collection are intended to supplement and not to replace those tutorials.

Viewing tip

I recommend that you open another copy of this module in a separate browser window and use the following links to easily find and view the listings while you are reading about them.

Listings

  • Listing 1 . The program named Comparator02.
  • Listing 2 . Passing Comparator to TreeSet constructor.
  • Listing 3 . The fillIt method.
  • Listing 4 . The class named MyClass.
  • Listing 5 . Beginning of the class named TheComparator.
  • Listing 6 . Beginning of the compare method.
  • Listing 7 . Implementation of required behavior.
  • Listing 8 . The overridden equals method.
  • Listing 9 . Display the contents of the TreeSet object.

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Object-oriented programming (oop) with java. OpenStax CNX. Jun 29, 2016 Download for free at https://legacy.cnx.org/content/col11441/1.201
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Object-oriented programming (oop) with java' conversation and receive update notifications?

Ask