What is the difference between array and arraylist?
what is the difference between arraylist and linkedlist?
Answers were Sorted based on User's Feedback
Answer / g.arun
Array is not growable and Arraylist is growable
We can access elements in a Arraylist randomly and in
LinkedList we cannot(means for accessing an element we have
traverse from first elemet in Linkedlist.
| Is This Answer Correct ? | 41 Yes | 5 No |
Answer / madhu sudana rao
first one:
array is fixed length,arraylist is growing array(means
they have no fixed length , if u add more the size
arraylist size incress and vise versa)
seond one:
if add and remove the elements in the middle takes more
time by using arrylist in that time use linkedlist
arrylist is good for retiveing the elements in specific
position
arraylist is faster than linkedlist for random accesing
of elemnets
| Is This Answer Correct ? | 20 Yes | 1 No |
Answer / satya
Every body missed out one main difference i.e Array used to
store primitive data(of type int,char etc.,) values where
as Arraylist is user to store objects.
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / pankaj gupta
in array the size of array is fixed but in case of arraylist
we can add element dynamicaly.
in linkedlist we deal with pointers but their is no pointers
in case of arraylist(eg.c#).
| Is This Answer Correct ? | 14 Yes | 5 No |
Answer / ram
array contain a similar data type and array size is fixed i.e
dynamically its size can't be changed.
but arraylist can store more then one data type and its size
can be changed dynamically.
one major difference is that,array used to store primitive
data type(i.e. int,char etc) while arraylist is used to
store objects.
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / anuj
array can,t have count and capacity method, but in array list have count and capacity method,
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sureshkumar
Using array we can stored value by using index.
Using arraylist we can stored value by using key.so we can
retrive the values by using key and we can remove the value
from arraylist by using key.So the array overflow problem
wont happen.
| Is This Answer Correct ? | 8 Yes | 26 No |
Difference between JVM and JRE?
What is java developer skills?
I don’t want my class to be inherited by any other class. What should I do?
What is the exact difference in between Unicast and Multicast object ?
What is the reason behind using constructors and destructors?
3.2 Consider the following class: public class Point { protected int x, y; public Point(int xx, int yy) { x = xx; y = yy; } public Point() { this(0, 0); } public int getx() { return x; } public int gety() { return y; } public String toString() { return "("+x+", "+y+")"; } } Say you wanted to define a rectangle class that stored its top left corner and its height and width as fields. 3.2.1 Why would it be wrong to make Rectangle inherit from Point (where in fact it would inherit the x and y coordinates for its top left corner and you could just add the height and width as additional fields)? (1) 8 Now consider the following skeleton of the Rectangle class: public class Rectangle { private Point topLeft; private int height, width; public Rectangle(Point tl, int h, int w) { topLeft = tl; height = h; width = w; } public Rectangle() { this(new Point(), 0, 0); } // methods come here } 3.2.2 Explain the no-argument constructor of the Rectangle class given above. 3.2.3 Write methods for the Rectangle class to do the following: • a toString() method that returns a string of the format "top left = (x, y); height = h; width = w " where x, y, h and w are the appropriate integer values. • an above() method that tests whether one rectangle is completely above another (i.e. all y values of the one rectangle are greater than all y values of the other). For example, with the following declarations Rectangle r1 = new Rectangle(); Rectangle r2 = new Rectangle(new Point(2,2), 1, 4); the expression r2.above(r1) should give true, and r2.above (r2) should give false. (You can assume that the height of a rectangle is never negative.) (2) (5)
what is the use of private constructor in core java?
3 Answers OnMobile, Satyam, Yash Technologies,
give me the answer of this code class A extnds String This code we can write r not in Java? Explain?
If a class is declared without any access modifiers, where can the class be accessed?
What is the intersection and union methods?
Explain the concept of proper inheritance?
0 Answers Thomson Reuters, Virtusa,
Default layout of panel and frame?