Possible Duplicate:
Why are variables declared with their interface name in Java?
How should lists be cast to their conrecte implementations?
Example:
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
This is usually so that you can swap in another implementation later and still have the code operate the same. For example, if you then decided to use a
TreeMapinstead of aHashMap, you could just change the instantiation step, and the rest of your code would still work just fine.