Java difference between Array and Vector

Java difference between Array and Vector

What is the difference between Array and Vector in Java?

View Answers

February 26, 2008 at 10:47 AM

DIFFERENCE
--------------------------
ARRAY
1.Array is unsynchronized
2.automatically increase the size when the initalized size will be exceed.

VECTOR
1.vector is synchronized.
2.when the size will be exceed at the time.vector size will increase double of initial size.

February 26, 2008 at 1:10 PM

Difference between Array & Vector

ANS1:- Array :

Array is most important thing in any programming language .Array is used to store the data items of the same kind .It means in array we can store the multiple values of same datatype belonging to a particular class. Array stores the values in memory at the fixed size. Multiple types of arrays are used in any programming language such as: one - dimensional, two - dimensional or can say multi - dimensional.

Declaration of an array :

int arr[] = new int [10];

sometimes , may be we can define the size or not .

Another way of array declaration is :

int arr[]={ 13,34,45,56};

A simple program of using array is given below :

import java.util.*;

public class ArrayClass{
public static void main(String[] args){
int arr[] = {14,45,56,10,67};
int l = arr.length;
int i,j;
System.out.print("numbers we have given are : ");
for (i=0;i<l;i++ ){
System.out.print(" " + arr[i]);
}
System.out.println("\n");
System.out.print("Accending order number : ");
Arrays.sort(arr);
for(i=0;i<l;i++){
System.out.print(" " + arr[i]);
}
}
}

output of the above program is

10

14

45

56

67
- - - - - - - - - - - - -
Vector:

For using vector we have to include java.util.Vector class. We create an object of Vector class and performs various operation like adding, removing etc. Vector class extends AbstractList and implements List, RandomAccess, Serializable interfaces . The size of a vector increase and decrease according to the program requirement .

Vector class contains seven multiplemethods such as .

add(Object o): Adds the element in end of the Vector

firstElement(): Returns the first element of the vector.

elementAt(int index): Returns the element at the specified index.

size(): Gives the number of element in a vector.

removeElementAt(int index): Deletes the element from the given index

elements(): Returns an enumeration of the element

lastElement(): Returns last element.

We can also used Enumeration interface to retrieve the value from vector.

Enumeration interface has two methods.

nextElement(): Checks the next element of the enumeration.

hasMoreElements(): Checks if this enumeration contains more elements or not.

- - - - - - - - - - - - -

Array Vs Vector :

Both Array and Vector in Java are similar. Both are used for storing the data. But there are some basisc difference between Array & Vector .

1. Array is the static memory allocation , while vector is the dynamic memory allocation.

2. Array allocates the memory for the fixed size ,in array there is wastage of memory, while Vector allocates the memory dynamically means according to the requirement no wastage of memory .

3. Vector has many more methods in comparing to Array.

4. By using Vector we can add, remove, & find the size of elements dynamically ,while it is not possible in Array.

Convert Array to Vector
http://www.roseindia.net/java/java-conversion/convert-vector-to-array.shtml











Related Tutorials/Questions & Answers:
what is diference between the vector and arraylist with realtime example - Java Interview Questions
what is diference between the vector and arraylist with realtime example  what is diference between the vector and arraylist with realtime example  Hi Friend, Difference between Vector and ArrayList: 1)Vector
What is the difference between mysql_fetch_object and mysql_fetch_array?
What is the difference between mysql_fetch_object and mysql_fetch_array?  What is the difference between mysqlfetchobject and mysqlfetcharray
Advertisements
difference between hashcode,reference in java
difference between hashcode,reference in java  difference between hashcode,reference in java
difference between wite and writeto in java
difference between wite and writeto in java  I am using the stream... the writeTo() method. I want to know difference between the write() and writeTo() method in java.   The writeTo() method writes the complete contents
What is difference between the java and javascript?
What is difference between the java and javascript?  What is the difference beteen the java and javascript?   Hello Friend, Read HereADS_TO_REPLACE_1 Thanks
Diff between ArrayList and Vector?
Diff between ArrayList and Vector?  What's The Difference between ArrayList and Vector Classes and Can you give me a simple Program for set and List Interface
difference between servletconfig and servletcontext in java
difference between servletconfig and servletcontext in java  difference between servletconfig and servletcontext in java   ServletContext ServletContext is implemented by the servlet container for all servlet
Difference between documentation comment and multiline comment in java?
Difference between documentation comment and multiline comment in java?  Difference between documentation comment and multiline comment in java
Difference between object and instance? - Java Beginners
Difference between object and instance?  What is the difference between object and instance in java
What is difference between the java and javascript?
What is difference between the java and javascript?  What is the difference beteen the java and javascript?   Hello Friend, Difference:ADS_TO_REPLACE_1 1) Java is a Object Oriented programming language developed
Give difference between LinkedList and ArrayList - Java Beginners
Give difference between LinkedList and ArrayList  Hi, What is the use of LinkedList and ArrayList? How you can difference between LinkedList.../beginners/array_list_demo.shtml http://www.roseindia.net/java/beginners/linked
difference between == and === operators?
difference between == and === operators?  Is (====) operator available in java or not? difference between
difference between servletconfig and servletcontext in java
difference between servletconfig and servletcontext in java  ServletConfig is implemented by the servlet container to initialize a single servlet using init(). ServletContext is implemented by the servlet container for all
difference between the obj and reference - Java Beginners
difference between the obj and reference  what is the difference between object and reference ? is there any difference
what is difference between objectan primitive? - Java Beginners
what is difference between objectan primitive?  whatis difference between object and primitive
difference between java5 and java6 - Java Beginners
difference between java5 and java6  Hi, What is difference between java5 and java6 Please let me know quickly
Difference between C++ and Java - Java Interview Questions
Difference between C++ and Java  Basic difference between C... was derived from C++ but still there is big difference between these two... am going to give you few differences between these two...1. Java does not support
Difference between DispatchAction and LookupDispatchAction
Difference between DispatchAction and LookupDispatchAction  What is the Difference between DispatchAction and LookupDispatchAction
difference between SessionState and ViewState
difference between SessionState and ViewState  What is the difference between SessionState and ViewState
Difference between struts and JSF
Difference between struts and JSF  What is the difference between struts and JSF
difference between ForwardAction and IncludeAction
difference between ForwardAction and IncludeAction  What is the difference between ForwardAction and IncludeAction
Difference between Java IO Class - Java Beginners
Difference between Java IO Class  What is the difference in function between Two set of Stream class as mention below- 1)FileInputStream... information. http://www.roseindia.net/java/ Thanks
Difference between Timer and Thread?
Difference between Timer and Thread?  Can anyone tell me about the difference between Timer and Thread, Why we need to have Timer in case we have Thread implimentation startegy in Java
What is difference between Core Java and Advanced Java?
What is difference between Core Java and Advanced Java?  Hi, I want to know about Core Java and Advanced Java. How should I learn these technologies? What is difference between Core Java and Advanced Java? Thanks   
What is difference between Core Java and Advanced Java?
What is difference between Core Java and Advanced Java?  Hi, I want to know about Core Java and Advanced Java. How should I learn these technologies? What is difference between Core Java and Advanced Java? Thanks   
what is the difference between access specifiers and access modifiers in java?
what is the difference between access specifiers and access modifiers in java?  what is the difference between access specifiers and access modifiers in java
In Java, what's the difference between public, default, protected, and private?
In Java, what's the difference between public, default, protected, and private?  In Java, what's the difference between public, default, protected, and private
pls tell me the difference between the run() and start() in threads in java....
pls tell me the difference between the run() and start() in threads in java....  difference between the run() and start() in threads in java
Hi .Difference between two Dates - Java Beginners
Hi .Difference between two Dates  Hi Friend.... Thanks for ur Very good response.. Can u plz guide me the following Program.... difference between two dates.. I need to display the number of days by Each Month
Vector in java
Vector in java Vector in java implements dynamic array. It is similar to array and the component of vector is accessed by using integer index. Size of vector can grow or shrink as needed, by adding and removing item from vector
difference between varchar & varchar2?
difference between varchar & varchar2?  What is the difference between varchar & varchar2
Difference between 3d and 4d
Difference between 3d and 4d  what is the difference between 3d and 4d
What is the difference between the >> and >>> operators?
What is the difference between the >> and >>> operators?   hi, What is the difference between the >> and >>> operators? Thanks
difference between lock and synchronization
difference between lock and synchronization  Hi, I am new in java please anyone tell me difference between lock and synchronization in java. its urgent. Thank in advance   Please visit the following link: Lock
Difference between API and Assembly - Java Beginners
Difference between API and Assembly  Can anybody tell me what is the diffrenece between API's and assemblies?  Hi friend, Points to be remember : API *) API Stands for "Application Program Interface
Difference between error and exception ????????
Difference between error and exception ?  Can we handle a error in java if yes than give an code of an example? Difference between error... to access a null object or reading an array out of bounds. They can also
What is the difference between a constructor and a method?
What is the difference between a constructor and a method?  Hi, What is the difference between a constructor and a method?   Hi, I have found a good link of Java program related to difference between constructor
Difference between Mysql and SQL
Difference between Mysql and SQL  hello, What is the difference between Mysql and SQL??   hii,ADS_TO_REPLACE_1 SQL is structural quary language but mysql is database package
Difference between == and equals method in java
Description: For comparing equality of string ,We Use equals() Method. There are two ways of comparison in java. One is "==" operator and another "equals()" method .  "==" compares the reference
what is the difference between extends and implements
what is the difference between extends and implements  difference between extends and implements
what is the difference between extends and implements
what is the difference between extends and implements  difference between extends and implements
Difference between SCJP Exams
Difference between SCJP Exams  What is the differences between SCJP 5 (310 - 055) exam and SCJP 6 (310 - 065) exam??? Thank You In Adv
Difference between JSP and Servlets
Difference between JSP and Servlets  What is the difference between JSP and Servlets ?   JSP is used mainly for presentation only. A JSP can only be HttpServlet that means the only supported protocol in JSP is HTTP
Vector in Java
Vector in Java are array lists that are used instead of arrays, as they have... Increment. Here is how to declare a Vector in Java Program:ADS_TO_REPLACE_2 This Syntax is used to declare an empty Vector r (internal data array size-10
Convert Array to Vector
Convert Array to Vector       In this section, you will learn to convert an Array to Vector... an Array into a Vector. Here we have taken an array of data which gets
Difference between request.getRequestDispatcher() and context.getRequestDispatcher()
Difference between request.getRequestDispatcher() and context.getRequestDispatcher()  What is the difference in using request.getRequestDispatcher() and context.getRequestDispatcher()?   request.getRequestDispatcher
Convert Vector to Array
to an Array. Here we have taken a Vector v.add("Java, is, ... Convert Vector to Array       In this section, you will learn to convert Vector to an Array
Difference between forward and sendRedirect
Difference between forward and sendRedirect  What's the difference between forward and sendRedirect?   RequestDispatcher.forward() and HttpServletResponse.sendRedirect() are the two methods available for URL redirecting
Difference between ServletContext and ServletConfig
Difference between ServletContext and ServletConfig   What is the difference between ServletContext and ServletConfig?   ServletContext :Defines a set of methods that a servlet uses to communicate with its servlet
Difference between translate and replace
Difference between translate and replace   hiii, What is the difference between translate and replace?   hello,ADS_TO_REPLACE_1 Replace replace every instence of character with character sting by the given charator

Ads