Array vs ArrayList

Array vs ArrayList


 

Array
ArrayList
Fixed-sizeSize is not fixed
Not type-safeType-safe
Allow both primitives and objectsDoesn't allow primitives. But after Java 5 auto-boxing will convert primitives to objects

Type safety means the compiler will validate the types while compiling and throw an error if you do anything wrong. 

0 comments :

Post a Comment