List<String> mList= new ArrayList<String>;
时间: 2023-07-09 07:37:17 浏览: 246
ArrayList的源码
5星 · 资源好评率100%
这是一个创建了一个空的字符串列表对象的语句,使用了Java中的泛型语法,指定了列表中元素的类型为String。可以向这个列表中添加字符串元素,例如:
```
mList.add("hello");
mList.add("world");
```
也可以通过下标访问列表中的元素,例如:
```
String first = mList.get(0);
```
注意,代码中的语句最后应该加上括号,即:
```
List<String> mList= new ArrayList<String>();
```
阅读全文