What is the difference between add() and addElement()
method in Vector Class ?

Answers were Sorted based on User's Feedback



What is the difference between add() and addElement() method in Vector Class ?..

Answer / sathya


add(int indx, Object e): Inserts the specified element at
the specified position in this Vector.Return type void

add(Object e):Appends the specified element to the end of
this Vector.Return type boolean

addElement(Object obj): Adds the specified component to the
end of this vector, increasing its size by one.Return type void.

Is This Answer Correct ?    19 Yes 3 No

What is the difference between add() and addElement() method in Vector Class ?..

Answer / sandhya sree malladi

This method is identical in functionality to the add
(Object) method (which is part of the List interface).

add(Object ) is due the fact that Vector implements List
Interface and it is appeared since Java 1.2 when Vector was
moved to Collections: The collection classes from earlier
releases, Vector and Hashtable, have been retrofitted to
implement the collection interfaces.

addElement is "original" Vector's method....

Is This Answer Correct ?    16 Yes 4 No

Post New Answer

More Core Java Interview Questions

Can we overload final method in java?

0 Answers  


What is arraylist e in java?

0 Answers  


What are the 4 types of research methods?

0 Answers  


What is formatted output in java?

0 Answers  


How many objects are created when we create String class object using new operator?

9 Answers   Mind Tree,






How can you make a class serializable in java?

0 Answers  


Can we declare register variable as global?

0 Answers  


What are the different data types in java?

0 Answers  


how an we achive multiple inhetitance in java using interface..??

2 Answers  


how to minimize the functionality to will not force garbage collector?

2 Answers  


Do I need to import java.lang package any time? Why?

1 Answers  


what is mutual exclusion? How can you take care of mutual exclusion using java threads? : Java thread

0 Answers  


Categories