what is Vector class?
Answers were Sorted based on User's Feedback
Answer / ravikiran(aptech mumbai)
vector class is from java.util package and all the methods
are synchronized and is a legacy class.and is a growable array
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / janet
The Vector class provides the capability to implement a
growable array of objects
| Is This Answer Correct ? | 2 Yes | 0 No |
What is Java Classloader?
1 Answers Phantom Technologies,
How do you use compareto in java?
What is a text string?
Can singleton class be inherited in java?
when we have to use final class in java?
What java is used for?
What do you mean by composition in java?
Explain about java sdk?
Which class is the superclass of all classes?
What is JVM ? use of JVM?
public class Test { public static void main(String ar[]) { Integer a = 10; Integer b =10; Integer c = 145; Integer d = 145; System.out.println(a==b); System.out.println(c==d); } }
What are drawbacks of singleton class?