`
zp19827
  • 浏览: 14989 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

AutoArrayList

    博客分类:
  • Code
 
阅读更多
import java.util.ArrayList; 

public class AutoArrayList extends ArrayList<Object>{ 

private static final long serialVersionUID = 1L; 

private Class itemClass; 

public AutoArrayList(Class clz){ 
    this.itemClass = clz; 
} 

@Override 
public Object get(int index) { 
try{ 
    while(index>=size()){ 
        add(itemClass.newInstance()); 
    } 
}catch(Exception e){ 
    e.printStackTrace(); 

} 
    return super.get(index); 
} 
} 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics