威武毛巾

文章
6
资源
0
加入时间
2年10月17天

数组中存放引用类型分析

数组中存放引用类型分析1.代码分析2.程序运行3.结果分析1.代码分析1.源代码:①.main函数内容:public class Test01 { public static void main(String[] args) { Cat c = new Cat(); Bird b = new Bird(); Animal[] a = { c, b }; for (int i = 0; i < a.length; i++) { if (a[i] instanceof C