overwriting entire array in java ?
807600Jun 26 2007 — edited Jun 27 2007Hi,
is it possible to overwrite a whole array java ? It seems I can only replace each cell individually, ie: myaray[3][4] = 32, or replace it with another array ie: myarray = newarray....
In javascript I was able to just say myarray[3] = [newdata,newdata,newdata] ... but I don't seem to be able to do that in java ?
making multiple arrays is giving me memory problems...
tthanks...