共计 948 个字符,预计需要花费 3 分钟才能阅读完成。
要修改 List 中对象的值,可以通过索引来获取对象,然后修改对象的属性值。以下是一个示例代码:
假设有一个 Student 类,具有属性 name 和 age,现在有一个 List list 存储了多个 Student 对象,我们想要修改其中一个 Student 对象的属性值:
import java.util.ArrayList;
import java.util.List;
class Student {private String name;
private int age;
public Student(String name, int age) {this.name = name;
this.age = age;
}
public String getName() {return name;
}
public void setName(String name) {this.name = name;
}
public int getAge() {return age;
}
public void setAge(int age) {this.age = age;
}
@Override
public String toString() {return "Student{" +
"name='" + name + '\'' +
", age=" + age +
'}';
}
}
public class Main {public static void main(String[] args) {List<Student> list = new ArrayList<>();
list.add(new Student("Alice", 20));
list.add(new Student("Bob", 22));
list.add(new Student("Charlie", 21));
// 修改第二个 Student 对象的属性值
Student student = list.get(1);
student.setAge(23);
// 输出修改后的 List
for (Student s : list) {System.out.println(s);
}
}
}
在上面的示例中,我们通过 list.get(1) 获取第二个 Student 对象,并通过 setAge 方法修改了该对象的 age 属性值。然后遍历 List 并输出修改后的结果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完