public static void main(String[] args) {Collection c = new ArrayList();// 添加元素c.add("hello");c.add("world");c.add("java");Object[] objs = c.toArray();for (int x = 0; x < objs.length; x++) {?//objs是Object[] 的对象名,但是Object类里面没有length //方法,但在遍历的时候为什么却可以调用?//System.out.println(objs[x] + "---" + objs[x].length());? ?这里objs[x].length()就不可以,调用length为什么上面//就可以呢???String s = (String) objs[x];System.out.println(s + "---" + s.length());
- 2 回答
- 0 关注
- 490 浏览
添加回答
举报
0/150
提交
取消