Is there a simple way to see if an array is full. I need to write a method that inserts an element at a certain index, and adjusts the other elements accordingly. If the array is full then a new array one element larger will need to be created. If the array is not full then the element can be inserted and the other elements moved accordingly. Does anyone have any ideas?
Bosun Bello
Ranch Hand
Joined: Nov 06, 2000
Posts: 1506
posted
0
The length variable gives you the size of the array. You can loop through to see how many elements actually have something in them. i.e they do not contain the default value associated with the datat type of the array. I believe a collection, specifically a vector or arrayList will be more appropriate for what you want to do. Check out the API for these classes.
Bosun
Bosun (SCJP, SCWCD)
So much trouble in the world -- Bob Marley
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.