I have an integer array int[] a = new int [5].
In my code I am storing only 2 values at indices 0 and 1.
a[0]=100 and a[1]=101
Now I need to get the array size/length as 2.
What I should do?
|
|
You array length is 5, not 2. You've defined your array to be 5 elements long, how many you ended up using is irrelevant. What can you do instead is this:
will give you 2 |
|||
|
|
|
You can't - there's no difference between an element which hasn't been set and an element which has been set to 0. The actual length of the array is 5, and will always be 5. (Arrays can't change in length after creation.) Of course, if you know that you'll never use 0, you could write:
... but if you're trying to use the array as a buffer with a "live" segment at the start (like |
||||
|
|
You can not change the size of the array. However, you can make a new array with the correct size and copy the data you are interested in into the new array. |
|||
|
|
|
You could loop through the array and check the last index that isn't 0 - or if you use the A far better way would be to use an arraylist and then get the size of that. You're most likely using arrays for the wrong purpose here. |
|||
|
|
|
Use
|
|||