package cn.edu.bjut.chapter6; import java.util.ArrayList; import java.util.List; public class GrouperTester { public static void main(String[] args) { List students = new ArrayList(); students.add(new Person("李文慧", 'F')); students.add(new Person("白晨", 'F')); students.add(new Person("谢天昊", 'M')); students.add(new Person("梁化祥", 'M')); students.add(new Person("高明", 'M')); students.add(new Person("孔雀", 'F')); Grouper grouper = new Grouper(students, 2, 1); System.out.println("The first group:"); System.out.println(grouper.getGroup(0)); System.out.println("The second group:"); System.out.println(grouper.getGroup(1)); } }