Wednesday, 28 August 2013

How to create ArrayList properly?

How to create ArrayList properly?

Below are two ways how to create ArrayList:
List<String/*or other object*/> arrList = new ArrayList();//Imports List,
ArrayList
ArrayList<String/*or other object*/> arrList = new ArrayList();//Imports
just ArrayList
What is the difference? Which method should be used?

No comments:

Post a Comment