2016-02-01_2  Object类

来源:互联网 发布:手机园林设计软件 编辑:程序博客网 时间:2024/05/30 22:48
Object类
public class ObjectDemo04 {
public static void main(String args[]){
int i[]={1,2,3,4,5,6,7};//数组
Object obj=i;//使用Object接收数组
int x[]=(int[])obj;//向下转型
for(int j=0;j
System.out.print(x[j]+"、");
}
}
}
运行结果:
1、2、3、4、5、6、7、
0 0
原创粉丝点击