| Author |
Using java.util.Vector
|
Tim Berett
Ranch Hand
Joined: Jun 14, 2002
Posts: 35
|
|
Hello, I have the following code Vector v = new Vector(); double[] b = new double[2]; b[0]=0.11; b[1]=2.3; v.add(b); How do I get back the array from the vector? I can't seem to cast it to double[]. Help appreciated. Thanks! Tim
|
 |
Ragu Ram
Greenhorn
Joined: Mar 08, 2004
Posts: 14
|
|
This must work.
|
 |
 |
|
|
subject: Using java.util.Vector
|
|
|