Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6793043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:03:12+00:00 2026-05-26T18:03:12+00:00

I am reading Effective Java. In a section that talks about using function objects

  • 0

I am reading Effective Java. In a section that talks about using function objects as strategies, the below paragraph is present.

Because the strategy interface serves as a type for all of its concrete strategy
instances, a concrete strategy class needn’t be made public to export a concrete
strategy. Instead, a “host class” can export a public static field (or static factory
method) whose type is the strategy interface, and the concrete strategy class can
be a private nested class of the host

   // Exporting a concrete strategy
  class Host {
        private static class StrLenCmp
               implements Comparator<String>, Serializable {

        public int compare(String s1, String s2) {
            return s1.length() - s2.length();
        }
    }

    // Returned comparator is serializable
    public static final Comparator<String>
    STRING_LENGTH_COMPARATOR = new StrLenCmp();
    ... // Bulk of class omitted
  }        

My question is , is there any particular advantage of using the above way? What is the problem with exporting the strategy by making concrete strategy public?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T18:03:12+00:00Added an answer on May 26, 2026 at 6:03 pm

    Yes, there is. This way you are returning the interface and not the concrete class, so if you change the concrete implementation of Comparator interface you don’t have to modify client classes too (I think this is the most important reason of using interfaces).

    For example:

    //inside aClass
    
    Comparator c = Host.STRING_LENGTH_COMPARATOR; //Programming against interfaces is different from:
    StrLenCmp  c = Host.STRING_LENGTH_COMPARATOR; //programming against concrete class
    

    Suppose in the future you will change StrLenCmp with another implementation (let’s call it NewStrLenCmp) than if you have programmed against interface Comparator you don’t have to modify aClass.

    Comparator c = Host.STRING_LENGTH_COMPARATOR; //still work because interface doesn't changed
    NewStrLenCmp  c = Host.STRING_LENGTH_COMPARATOR; // problem: you need to modify the client class in order to use the new concrete type: bad idea
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I remember reading a section, possibly in Bloch's Effective Java , that said that
I am reading Effective Java and the book has the below comment on the
I posting a doubt that I came across reading Effective Java. I apologize if
I am currently re-reading Effective Java while working at a shop that makes heavy
I am reading Effective Java . In the discussion about finalize, he says C++
I was going through Effective Java and reading static factory methods for creating objects.
I am reading Josh Bloch's book Effective Java and he suggests using a builder
I've been reading about Access-Control-Allow-Origin because it seems effective at allowing cross domain requests
I was reading Joshua Bloch's Effective Java Programming Language Guide . He explains static
I am reading Effective Java by Joshua Bloch. At the top of page 16,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.