I just want to know what the actual difference between Java Collection and Collections is.
Thanks in advance!
|
I just want to know what the actual difference between Java Collection and Collections is. Thanks in advance! |
|||||
|
|
Collection is a base interface for most collection classes, whreas Collections is a utility class. I recommend you reading documentation. |
|||||
|
|
Are you asking about the Collections class versus the classes which implement the Collection interface? If so, the Collections class is a utility class having static methods for doing operations on objects of classes which implement the Collection interface. For example, Collections has methods for finding the max element in a Collection. The Collection interface defines methods common to structures which hold other objects. List and Set are subinterfaces of Collection, and ArrayList and HashSet are examples of concrete collections. |
||||
|
|
|
collection : A collection(with small 'c') represents a group of objects/elements.
|
|||
|
|
|
The Collections Framework is Java's native implementation of data structure classes (with implementation specific properties) which represent a group of objects which are somehow related to each other and thus can be called a collection.
The main difference in my opinion is that |
|||||||||||||
|
|
Collection, as its javadoc says is "The root interface in the collection hierarchy." This means that every single class implementing Collection in any form is part of the Java Collections Framework. The Collections Framework is Java's native implementation of data structure classes (with implementation specific properties) which represent a group of objects which are somehow related to each other and thus can be called a collection. Collections is merely an utility method class for doing certain operations, for example adding thread safety to your ArrayList instance by doing this: List list = Collections.synchronizedList(new Arraylist()); The main difference in my opinion is that Collection is base interface which you may use in your code as a type for object (although I wouldn't directly recommend that) while Collections just provides useful operations for handling the collections. |
|||
|
|
|
Collection is a base interface for most collection classes (it is the root interface of java collection framework) Collections is a utility class Collections class is a utility class having static methods It implements Polymorphic algorithms which operate on collections. |
|||
|
|
|
The |
||||
|
|
|
Collections is a class which has some static methods and that method returns the collection. Collection is an interface,rather than root interface in collection hierarchy. |
|||
|
|
collection is an intrface collections are classes |
|||
|
|
|
collection is an interface and it is a root interface for all classes and interfaces like set,list and map.........and all the interfaces can implement collection interface. Collections is a class that can also implements collection interface....... |
|||
|
|