List<String> data = new ArrayList<>();怎么用
时间: 2023-08-04 08:29:20 浏览: 203
这个代码定义了一个名为 `data` 的 `ArrayList` 对象,它的元素类型是 `String`。你可以使用以下方法来使用它:
1. 添加元素:使用 `add()` 方法将元素添加到列表中,例如:`data.add("hello");`
2. 获取元素:使用 `get()` 方法获取列表中指定位置的元素,例如:`String element = data.get(0);`
3. 删除元素:使用 `remove()` 方法删除列表中指定位置的元素,例如:`data.remove(0);`
4. 判断元素是否存在:使用 `contains()` 方法判断列表中是否存在指定元素,例如:`boolean isExist = data.contains("hello");`
5. 获取列表长度:使用 `size()` 方法获取列表的长度,例如:`int length = data.size();`
希望这些方法可以帮助你使用 `ArrayList` 对象。
相关问题
List< List<String> > data = new ArrayList<>();是什么意思
`List<List<String>> data = new ArrayList<>();` 是Java中定义一个二维字符串数组的语句,也可以称之为二维字符串列表。
- `List<String>` 表示存储字符串类型元素的列表,它是Java集合框架中的一种数据结构,可以动态地添加、删除和修改元素。
- `List<List<String>>` 表示存储字符串类型元素的二维列表,也就是一个列表中包含了多个列表,每个子列表中又包含了多个字符串元素。
- `new ArrayList<>()` 表示创建一个 ArrayList 实例,用来存储二维列表中的元素。
因此,`List<List<String>> data = new ArrayList<>();` 的意思就是创建一个二维列表 data,用来存储多行字符串数据,每行数据又是由多个字符串元素组成的列表。
Task 2. Create a list of students by reading from student_hobbies.txt and display the list. // - You will also need to create a Student class, which has at least // two data fields: student name and an ArrayList of hobbies (String-type).优化以下代码private static ArrayList<Student> readFile(String string) throws IOException{ ArrayList<Student> studentlist=new ArrayList<Student>(); File file = new File("student_hobbies_JU.txt"); Scanner scanner = new Scanner(file); while (scanner.hasNextLine()) { String line = scanner.nextLine(); String[] data = line.split(", "); System.out.println(data); String name = data[0]; ArrayList<String> hobbies = new ArrayList<String>(); for(int i=0;i<data.length;i++){ hobbies.add(data[i]); } Student student = new Student(name, hobbies); studentlist.add(student); System.out.println(student); } scanner.close(); return studentlist; }//end readFile
下面是优化后的代码,其中将文件名作为参数传入函数中,使函数更加通用:
```
private static ArrayList<Student> readFile(String fileName) throws IOException {
ArrayList<Student> studentList = new ArrayList<Student>();
File file = new File(fileName);
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
String[] data = line.split(", ");
String name = data[0];
ArrayList<String> hobbies = new ArrayList<String>();
for (int i = 1; i < data.length; i++) { // 从第二个元素开始,将所有的兴趣爱好添加到hobbies列表中
hobbies.add(data[i]);
}
Student student = new Student(name, hobbies);
studentList.add(student);
}
scanner.close();
return studentList;
}
```
该函数将指定文件中的内容读取到一个ArrayList<Student>中,并返回该列表。下面是Student类的代码:
```
public class Student {
private String name;
private ArrayList<String> hobbies;
public Student(String name, ArrayList<String> hobbies) {
this.name = name;
this.hobbies = hobbies;
}
public String getName() {
return name;
}
public ArrayList<String> getHobbies() {
return hobbies;
}
public void setName(String name) {
this.name = name;
}
public void setHobbies(ArrayList<String> hobbies) {
this.hobbies = hobbies;
}
@Override
public String toString() {
return "Student{" +
"name='" + name + '\'' +
", hobbies=" + hobbies +
'}';
}
}
```
该类包含两个数据字段:name和hobbies,分别表示学生的姓名和兴趣爱好列表。该类还包含构造函数、getter和setter方法以及toString方法,用于打印学生对象的信息。可以使用以下代码调用readFile函数并打印学生列表:
```
try {
ArrayList<Student> studentList = readFile("student_hobbies.txt");
for (Student student : studentList) {
System.out.println(student);
}
} catch (IOException e) {
e.printStackTrace();
}
```
阅读全文