InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Collection And Collections? |
|
Answer» COLLECTION is an INTERFACE whereas Collections is a class. Collection interface provides NORMAL functionality of data structure to List, Set and Queue. But, Collections class is to SORT and SYNCHRONIZE collection elements. Collection is an interface whereas Collections is a class. Collection interface provides normal functionality of data structure to List, Set and Queue. But, Collections class is to sort and synchronize collection elements. |
|