how to declare an array type class object in java , and how to invoke the methods
pl. correct
abc a[]=new abc[10]; is it correct or not.
Printable View
how to declare an array type class object in java , and how to invoke the methods
pl. correct
abc a[]=new abc[10]; is it correct or not.
nope ... abc[] a = new abc[10]; is correct (array of abc's)