日期:2014-05-20  浏览次数:20716 次

ArrayList里方法的问题
API中ArrayList有这个方法    
protected   void   removeRange(int   fromIndex,int   toIndex)
请问高手们   我怎么可以用这个方法?eclipse中调不出来.谢谢..


------解决方案--------------------
public class MyArrayList extends ArrayList {

public void f() {
// 在这里用removeRange();
}


}