I am new to java and have a question
myBooks = new ArrayList<HashMap<String,Object>>();
What is HashMap and what does it mean when we use < > for ArrayList class?
|
I am new to java and have a question
What is |
||||
|
|
|
Both This particular declaration says that there is an |
||||
|
|
|
It indicates generic type in Java. For instance, if you're using an
means that what is being stored into the ArrayList myBook will be of type String available in Java. In the following statement
The ArrayList is holding a HasMap with keys of type String and values of type Objects. Similarly, you can make use of such as
You could have simply defined them without genetic types as follows.
The compiler will not complain at all in this situation but its always preferable to use generic with them. |
||||
|
|
|
This is an example of Java generics. A data structure like In your case, you've got a |
|||
|
|
|
All of the above answers are great. In addition, though, I would like to point out that you should also read up on Java Type Erasure to understand the difference between the compile-time and run-time behaviors of Generics. You will save yourself a lot of pain by understanding type erasure correctly. |
|||
|
|