List interface?
Answers were Sorted based on User's Feedback
Answer / ravichandra
list inteface can have three types are 1.linkedlist
2.arraylist 3.vector
1.arraylist:It is dynamically growing array that stores
objects.It is not synchronized.
ex:-
ArrayList arl = new ArrayList();
2.Vector:-It is dynamically growing array that stores
objects.It is synchronized.
EX:-
Vector v= new Vector();
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / ravikiran(aptech mumbai)
List interface provides classes and interfaces to save the
objects incliding duplicates.
| Is This Answer Correct ? | 0 Yes | 2 No |
What is toarray method in java?
How can we make a class virtual?
What is the base class of all exception classes in java?
give me the answer of this code class A extnds String This code we can write r not in Java? Explain?
5 What is Java exception handling?
What is canonical name in java?
if num=687; U have to get num=6+8+7;
List some important features of java 10 release?
Why does java doesnt suuport unsigned values?
How do I write a self declaration?
Can a class be subclass of itself?
What is the purpose of static keyword in java?