可以使用構造函數從另一個集合對象創建集合對象。在Spring中使用集合
List<Student> list = new ArrayList<Student>(someStudentList);
這可以在春季完成。
<bean id="stdArrayList" class="java.util.ArrayList">
<constructor-arg >
<list>
<ref bean="student1" />
<ref bean="student2" />
<ref bean="student3" />
</list>
</constructor-arg>
</bean>
<bean id="student1" class="mawia.test.Student"
....
如何在春季添加項目?
Set<Student> set= new TreeSet<Student>();
set.add(new Student(5, "Mawia"));
...
這樣我就可以使用接受比較對象的構造函數。
Set<Student> set= new TreeSet<Student>(new MyComparator());
set.add(new Student(5, "Mawia"));
...
太棒了!非常感謝。 – Mawia 2013-04-05 11:49:42