InterviewSolution
Saved Bookmarks
| 1. |
Can you add a null element into a TreeSet or HashSet? |
|
Answer» We can add NULL ELEMENTS in a HASHSET but we cannot add null elements in a TreeSet. The reason is that TreeSet uses the compareTo() method for comparing and it throws a NullPointerException when it ENCOUNTERS a null ELEMENT. |
|