where exactly collections are usefull in realtime
Answers were Sorted based on User's Feedback
Answer / kumar
Collections are usefull in those situations where you doesn't know how much data you have to handled, that means size of data not defined. Like there are so many scenario when data dynamically comes from UI or application ( no fixed size defined) then you must use collections to manage and perform diff operations.
| Is This Answer Correct ? | 13 Yes | 1 No |
Answer / suresh
collections are the advanced concept to maintain dynamic data as objects. In real time some times we can't estimate the size of the data and type of the data.so it's better to maintain data as objects through collections.through arrays we can't manage the data because arrays are not auto-grow-able in size.
through collections we can use our required data structures directly. we have different classes for that. in each we have predefined methods to manipulate data in that collection.
Collections are performance wise slow. even though collections provide more features to maintain huge data easily.
| Is This Answer Correct ? | 6 Yes | 0 No |
Definition for connection pooling?
What is thread count in java?
Is alive and join method in java?
Is null a keyword in java?
Is null keyword in java?
What happens when a main method is declared as private?
22 Answers DELL, Infosys, L&T, Sun Microsystems,
I want my class to be developed in such a way that no other class (even derived class) can create its objects. Define how can I do so?
How to instantiate static nested classes in java?
difference between String a; and String a=new String();? y do v need to assign memory to the variable?
How to convert string to char and vice versa?
Enlist few advantages of inheritance?
What is class and object in java?