You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
267 B
Java
14 lines
267 B
Java
1 year ago
|
package shuju;
|
||
|
|
||
|
import com.google.common.collect.Lists;
|
||
|
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
public class Test {
|
||
|
public static void main(String[] args) {
|
||
|
List<String> list = Lists.newArrayList();
|
||
|
System.out.println(list.get(0));
|
||
|
}
|
||
|
}
|