Home > Articles > Programming > Java

📄 Contents

  1. Download and Installation
  2. Getting Started with Lambda Expressions
Like this article? We recommend

Like this article? We recommend

Getting Started with Lambda Expressions

JSR 335 is large and still being developed, so I wanted to choose something to demonstrate lambda expressions that shows the value they offer and as well as the syntax, which isn't likely to change much in the next few months. In this section, I'll demonstrate how to use lambda expressions for functional interfaces and how to pass lambda expressions to new methods in the collection classes to perform operations on the contents of the collection.

For the first example, consider the standard mechanism in Java 7 for sorting a collection of objects: To sort, you need to create a class that implements the Comparable interface and overrides the compareTo() method. This is pretty straightforward, and you've probably done it dozens of times, but it's a bit cumbersome. Listing 1 shows how we can do this to sort a list of Strings.

Listing 1: TraditionalComparatorTest.java.

package test;

import java.util.*;

public class TraditionalComparatorTest
{
  public static void showList( List<String> list )
  {
    System.out.println( "List: " );
    for( String element : list )
    {
       System.out.println( "\t" + element );
    }
  }

  public static void main( String[] args )
  {
    List<String> myList = new ArrayList<String>();

    // Build a list
    myList.add( "Z" );
    myList.add( "A" );
    myList.add( "M" );

    showList( myList );

    // Sort the list using a closure
    Collections.sort( myList, new Comparator<String>() {
        @Override
        public int compare( String a1, String a2 ) {
          return a1.compareTo( a2 );
        }
      } );
    showList( myList );
  }
}

In Listing 1, we create an anonymous inner class that implements the compare() method, and we pass that to the Collections.sort() method. The output from running this class is shown below:

List:
      Z
      A
      M
List:
      A
      M
      Z

Listing 2 shows how we can accomplish the same thing by using a lambda expression that we can pass directly to the Collections.sort() method.

Listing 2: LambdaComparatorTest.java.

package test;

import java.util.*;

public class LambdaComparatorTest
{
  public static void showList( List<String> list )
  {
    System.out.println( "List: " );
    for( String element : list )
    {
       System.out.println( "\t" + element );
    }
  }

  public static void main( String[] args )
  {
    System.out.println( "Hello, Lambda" );
    List<String> myList = new ArrayList<String>();

    // Build a list
    myList.add( "Z" );
    myList.add( "A" );
    myList.add( "M" );

    showList( myList );

    // Sort the list using a closure
    Collections.sort( myList, ( String a1, String a2 ) -> ( a1.compareTo( a2 ) )  );
    showList( myList );
  }
}

The lambda expression is constructed by specifying the input variables (two Strings), followed by an arrow, and then the expression to execute, enclosed in parentheses:

( String a1, String a2 ) -> ( a1.compareTo( a2 ) )

Anywhere you have a functional interface, you can pass in a lambda expression in its stead.

In addition to functional interfaces, Project Lambda adds new functionality to collections. Listing 3 and listing 4 demonstrate how to filter a list of objects based on an object value and then how to sort those items by an arbitrary field.

Listing 3: Book.java.

package test;

public class Book
{
  private String author;
  private String title;
  private String genre;
  private int year;

  public Book()
  {
  }

  public Book( String author, String title, String genre, int year )
  {
    this.author = author;
    this.title = title;
    this.genre = genre;
    this.year = year;
  }

  public String getAuthor()
  {
    return author;
  }

  public void setAuthor( String author )
  {
    this.author = author;
  }

  public String getTitle()
  {
    return title;
  }

  public void setTitle( String title )
  {
    this.title = title;
  }

  public String getGenre()
  {
    return genre;
  }

  public void setGenre( String genre )
  {
    this.genre = genre;
  }

  public int getYear()
  {
    return year;
  }

  public void setYear( int year )
  {
    this.year = year;
  }

  public String toString()
  {
    return title + " written by " + author + " in the year " + year + " is of the genre: " + genre;
  }
}

Listing 4: LambdaCollectionTest.java.

package test;

import java.util.*;

public class LambdaCollectionTest
{
  public static void showBooks( List<Book> list )
  {
    System.out.println( "Book List: " );
    for( Book book : list )
    {
      System.out.println( "\t" + book );
    }
  }

  public static void main( String[] args )
  {
    // Build our set of books
    List<Book> list = new ArrayList<Book>();
    list.add( new Book( "Author A", "Title 1", "Fiction", 1990 ) );
    list.add( new Book( "Author C", "Title 3", "Fiction", 1995 ) );
    list.add( new Book( "Author B", "Title 2", "Fiction", 1980 ) );
    list.add( new Book( "Author E", "Title 6", "Computer Science", 2000 ) );
    list.add( new Book( "Author D", "Title 5", "Computer Science", 2010 ) );
    list.add( new Book( "Author F", "Title 7", "Computer Science", 2000 ) );

    showBooks( list );

    // Filter on Fiction Books
    List<Book> fictionBooks = list.filter( b -> b.getGenre().equals( "Fiction") )
                                  .into( new ArrayList<Book>() );
    showBooks( fictionBooks );

    // Filter on Fiction Books and sort by year
    List<Book> sortedFictionBooks = list.filter( b -> b.getGenre().equals( "Fiction") )
                                        .sorted( ( Book b1, Book b2 ) -> {
                                                   if( b1.getYear() > b2.getYear() ) return 1;
                                                   else if( b1.getYear() == b2.getYear() ) return 0;
                                                   else return -1;
                                                   } )
                                        .into( new ArrayList<Book>() );
    showBooks( sortedFictionBooks );

  }
}

Listing 3 presents a simple POJO for a book object. Listing 4 shows three new methods added to the java.lang.Iterable interface:

  • filter(): The filter() method allows you to filter a collection by the value contained in one (or more) of the object's fields. Listing 4 retrieves the Book's genre and only includes those books with a genre of Fiction.
  • into(): When you invoke a method like filter(), it returns an instance of Iterable, and you probably want to do something with the results of the filter. The into() method allows you to create a new collection into which the results of all expressions will be copied.
  • sorted(): The sorted() method allows you to provide a Comparator implementation—the same as the Collections.sort() method—with which to sort your list.

The first example shows how to filter only on fiction books and then create a new list that contains the filtered books. The second example expands on that logic to include a sorting function that sorts by date.

The filter expression implicitly passes each instance in your list and allows you to return a Boolean result indicating whether it should be included. While the following expression filters only on Fiction, you can make it more complex:

b -> b.getGenre().equals( "Fiction")

On the other hand, you can pass the filtered list to another filter, which might make it read cleaner (for example, filter on "Fiction" and then on years greater than 1995).

As I mentioned earlier, the sorted() method accepts a Comparator functional expression. Strings are easy to compare, as we did earlier in this article, because the String class already provides a compareTo() method. However, to compare integers (and to illustrate how to build blocks of expressions), the expression needs to examine the individual values of the year field and return -1, 0, or 1, as the Comparator.compare() method specifies:

( Book b1, Book b2 ) -> {
  if( b1.getYear() > b2.getYear() ) return 1;
  else if( b1.getYear() == b2.getYear() ) return 0;
  else return -1;
  }

Summary

This article has only touched the surface of lambda expressions, but with the release of Java 8 scheduled for summer 2013, you have time to get ready. Fortunately, Project Lambda provides a prototype that you can use to experiment. The only warning I can give you is that many of the examples in the documentation don't match the code implementation—so it might be a good idea to unzip the src.zip file in the prototype to find out why things aren't working as you think.

In terms of language enhancements, Project Lambda aims to make things easier and cleaner for Java developers, and when you explore more of the advanced features, you'll see that it provides some new paradigms to help you solve problems that are tedious today.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020