forked from CPU-Code/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayList_object.java
More file actions
72 lines (56 loc) · 1.61 KB
/
ArrayList_object.java
File metadata and controls
72 lines (56 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-09-12 17:19:17
* @LastEditTime: 2020-09-12 18:18:54
* @FilePath: \java\javaAPI\ArrayList\ArrayList_object.java
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
*/
package javaAPI.ArrayList;
import java.util.ArrayList;
public class ArrayList_object {
public static void main(String[] args){
//创建集合对象
ArrayList<Student> list = new ArrayList<Student>();
//创建学生对象
Student s1 = new Student("cpucode", 20);
Student s2 = new Student("cpu", 21);
//把学生对象作为元素添加到集合中
list.add(s1);
list.add(s2);
//遍历集合
for(int x = 0; x < list.size(); x++){
Student s = list.get(x);
System.out.println(s.getName() + "---" + s.getAge());;
}
}
}
class Student {
private String name;
private int age;
public Student() {
}
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;
}
}
/*
cpucode---20
cpu---21
*/