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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T22:18:02+00:00 2026-05-27T22:18:02+00:00

I have a basic question about using the Best Practices in coding. (I’m using

  • 0

I have a basic question about using the “Best Practices” in coding. (I’m using Java, but the question is general to OOP.) When writing method’s for a class that are intended to be used in the long run, is it best to leave the return object with or without generics?

To be specific in my case, I’m returning a Map<String, Integer> with the method. Should I specify this in the return statement, or should I simply return a Map?

  • 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-27T22:18:02+00:00Added an answer on May 27, 2026 at 10:18 pm

    It is best to use generics whenever possible. It will help avoid runtime exceptions, and it won’t force the people using your code to do a bunch of ugly type casting. For example, if you use the following signature:

    Map<String, Integer> getMap();
    

    … then the consuming code might look like this:

    Map<String, Integer> map = getMap();
    Integer val = map.get(key);
    

    … but if you use a signature like this:

    Map getMap();
    

    … the consuming code might look like this:

    Map<String, Integer> map = (Map<String, Integer)getMap();
    Integer val = map.get(key);
    

    By using generics, not only do you save that (Map<String, Integer>) cast, but in the event that you change getMap to actually return a Map<String, Object>, you will get a compile-time error (which is easy to catch and fix), rather than possibly getting an exception when you call map.get(key) and the JRE tries to do an automatic cast of some random Object into an Integer.

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

Sidebar

Related Questions

I've got a basic question about obj-c coding, say I have two classes represented
I have a basic question about assembly. Why do we bother doing arithmetic operations
I am making a webapp. I have a fairly basic question about javascript performance.
Sorry about the wording for my question title. I have a basic HTML anchor
Very basic question - but I couldn't find an answer. I have got a
Have a quick question about what would be the best way to implement iterators
I'm doing my best to learn DDD, but I'm unsure about some really basic
I have a very basic question about how to write to a plist. I
I have a quick question about using logical operators in an if statement. Currently
this might be a basic question about jquery, but I hope someone will clarify

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.