Results 1 to 3 of 3
Thread: Array null values
- 03-20-2011, 06:26 AM #1
Member
- Join Date
- Oct 2010
- Posts
- 26
- Rep Power
- 0
Array null values
Hi, I'm having a bit of a problem with this code. I've looked over it a few times and I just can't see it being illogical? It makes sense to me and should be working.
I'm trying to do a remake of the "ArrayList" as what my textbook is asking me to do. However, this code here is returning nothing but null values besides the last the last element of the array which returns correctly (which makes sense to me).PHP Code:public void add(Object object){ sizeArray++; Object[] temp = new Object[sizeArray]; this.array = temp; this.array = new Object[sizeArray + 1]; for(int i = 0; i < temp.length; i++){ array[i] = temp[i]; } array[sizeArray] = object; }
Am I doing something wrong with the array/temp coversion?
Thanks!!
-
i think this is the problem:
- a new array 'temp' is initialized (it has no values - so 'null')
- class field 'array' = temp //essentially resetting the array with the new size
- 'array' = new Object[sizeArray+1] // i don't understand
- you iterate through the new NULL array and replace the items with temp array which is also NULL because neither new nor reset array have had values assigned to them
- the latest item 'object' is added
the method is clearly flawed in that it does not copy the values of the original array held in the class field 'array' to the new temp array
-
Similar Threads
-
need to input values from a text file into an array and count values
By pds8475 in forum New To JavaReplies: 14Last Post: 01-22-2011, 02:36 PM -
Is it better to set array elements to null before setting the arrayreference to null?
By kreyszig in forum Advanced JavaReplies: 6Last Post: 10-18-2010, 10:40 AM -
cant print 2d array(giving null values)
By fneeks in forum New To JavaReplies: 1Last Post: 04-07-2010, 08:48 PM -
null values
By jabo in forum New To JavaReplies: 3Last Post: 03-31-2010, 03:44 PM -
How to get null values stored in array
By Ms.Ranjan in forum New To JavaReplies: 4Last Post: 05-21-2009, 10:29 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks