コレクションフレームワーク(Collectionはカスタムオブジェクトを格納し、ケースを巡ります)
745 ワード
package cn.itcast_02;
import java.util.ArrayList;
import java.util.Collection;
/*
* : 5 , 。
*
* :
* A:
* B:
* C:
* D:
* E:
* F:
*/
public class StudentDemo {
public static void main(String[] args) {
//
Collection c = new ArrayList();
//
Student s1 = new Student(" ", 27);
Student s2 = new Student(" ", 30);
Student s3 = new Student(" ", 33);
Student s4 = new Student(" ", 25);
Student s5 = new Student(" ", 22);
//
c.add(s1);
c.add(s2);
c.add(s3);
c.add(s4);
c.add(s5);
//
Object[] objs = c.toArray();
//
for (int x = 0; x