最佳答案
我最近在办公室的 android 项目中使用了 ArrayList,我对 List 和 ArrayList 有些困惑,它们有什么区别? 我应该使用什么?
我还看到了一些类似的实现。
List<SomeObject> myList = new ArrayList<SomeObject>();
ArrayList<SomeObject> myList = new ArrayList<SomeObject>();
这两种情况有什么区别?