Wed Oct 22, 2008 1:11 am
class Dims {
public static void main(String[] args) {
int[][] a = {{1,2,}, {3,4}};
System.out.println(a[1]);
int[] b = (int[]) a[1];
System.out.println(b[1]);
}
}
Wed Oct 22, 2008 1:12 am
int[] b = (int[]) a[0];
System.out.println(b[0]);
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.