In PHP, you can dynamically add elements to arrays by the following:
$x = new Array();
$x[] = 1;
$x[] = 2;
After this, $x would be an array like this: {1,2}.
Is there a way to do something similar in Java?
|
In PHP, you can dynamically add elements to arrays by the following:
After this, Is there a way to do something similar in Java? |
|||||||||
|
|
Look at java.util.LinkedList or java.util.ArrayList
|
|||||||||||||
|
|
Arrays in Java have a fixed size, so you can't "add something at the end". A bit similar to the PHP behaviour:
Then you can write:
But this scheme is horrible inefficient for larger arrays, as it makes a copy of the whole array each time. (And it is in fact not completely equivalent to PHP, since your old arrays stays the same). The PHP arrays are in fact quite the same as a Java HashMap with an added "max key", so it would know which key to use next, and a strange iteration order (and a strange equivalence relation between Integer keys and some Strings). But for simple indexed collections, better use a List in Java, like the other answerers proposed. If you want to avoid using |
|||||||||
|
|
You can use an See: Java List Tutorial |
|||
|
|
|
You probably want to use an ArrayList for this -- for a dynamically sized array like structure. |
|||
|
|
|
http://commons.apache.org/lang/api-3.0.1/org/apache/commons/lang3/ArrayUtils.html#add(T[],%20T) ArrayUtils:
|
|||
|
|
|
You can dynamically add elements to an array using Collection Frameworks in JAVA. collection Framework doesn't work on primitive data types. This Collection framework will be available in "java.util.*" package For example if you use ArrayList, Create an object to it and then add number of elements (any type like String, Integer ...etc)
Now you were added 3 elements to an array. if you want to remove any of added elements
again if you want to add any element
So the array size is incresing / decreasing dynamically.. |
|||
|
|
|
keep a count of where you are in the primitive array
|
|||
|