集合框架_集合的遍历之集合转数组遍历

package cn.itcast_01;

import java.util.ArrayList;
import java.util.Collection;

/*
 * 集合的遍历。其实是依次去获取集合中的每一个元素。
 * 
 * Object[] toArray():把集合转成数组,可以实现集合的遍历
 */
public class CollectionDemo3 {
	public static void main(String[] args) {
		// 创建集合对象
		Collection c = new ArrayList();

		// 添加元素
		c.add("hello");// Object obj = "hello";向上转型
		c.add("world");
		c.add("java");

		// 编历
		// Object[] toArray():把集合转成数组,可以实现集合的遍历
		Object[] objs = c.toArray();
		for (int x = 0; x < objs.length; x++) {
			// System.out.println(objs[x]);
			// 我知道元素是字符串,我在获取到元素的同时,还想知道元素的长度
			// System.out.println(objs[x]+"---"+objs[x].length());
			// 上面实现不了,原因是Object中没length()方法
			// 向下转型
			String s = (String) objs[x];
			System.out.println(s+"---"+s.length());
		}
	}
}

你可能感兴趣的:(Java,集合框架_Iterator,Collection,ArrayList)