如何在列表中查找特定值。例如:这是在 Demo1 类方法中
/*some code*/ ---------
---------//Generating List<Date> d1 and d2 hear
public List<Date> returnList(List<Date> d1,List<Date> d2)
{
List<Date> startDate=new ArrayList<Date>();
startDate.add(d1);
startDate.add(d2);
return startDate;
}
并且 Demo2 类我在服务类中使用此方法,该方法我想要相同的 d1,d2
列表。