0
Can we create an array of vectors in java?
let me give an example Vector v[]=new Vector[10]; S.o.p(v[0]); it throws null pointer exception why?
1 Odpowiedź
+ 2
Yep! Arrays can hold any data type, including objects.
let me give an example Vector v[]=new Vector[10]; S.o.p(v[0]); it throws null pointer exception why?