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 1003183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T07:56:27+00:00 2026-05-16T07:56:27+00:00

I am just reading through collection java tutorial and wondering why the <E> is

  • 0

I am just reading through collection java tutorial and wondering why the <E> is needed after static?


public static<E> Set<E> removeDups(Collection<E> c) {
    return new LinkedHashSet(c);
}


Thanks,
Sarah

  • 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-16T07:56:27+00:00Added an answer on May 16, 2026 at 7:56 am

    For readability, there’s usually a space between the static and the generic parameter name. static declares the method as static, i.e. no instance needed to call it. The <E> declares that there is an unbounded generic parameter called E that is used to parameterize the method’s arguments and/or return value. Here, it’s used in both the return type, Set<E> to declare the method returns a Set of E, and in the parameter, Collection<E> indicating that the method takes a collection of E.

    The type of E is not specified, only that the return value and the method parameter must be generically parameterized with the same type. The compiler determines the actual type when the method is called. For example,

       Collection<String> myStrings = new ArrayList<String>();
       .. add strings
       Set<String> uniqueStrings = SomeClass.removeDups(myStrings);
    

    If you attempt use different parameterized types for the two collections, such as

       Set<Integer> uniqueStrings = SomeClass.removeDups(myStrings);
    

    this will generate a compiler error, since the generic parameters do not match.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was just reading abit about JMS and Apache ActiveMQ. And was wondering what
I was just reading a little bit on them from http://www.cplusplus.com/doc/tutorial/namespaces/ and it seems
I have been reading about streams in Java the past days. After reading quite
I have just started reading through The C Programming Language and I am having
I was just reading through Learning Python by Mark Lutz and came across this
Was just reading about different algos disassemblers use to identify binary as assembly instructions.
i was just reading a great presentation about Quality Assurance for PHP Projects by
I'm just reading about OutputCache , and I see how you can apply VaryByParam
I was just reading about Magento , a free framework for easily creating an
I was just reading this line: The first thing the format() method does is

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.