java二维数组班级系统类方法
时间: 2023-10-03 18:05:32 浏览: 111
以下是一个简单的 Java 二维数组班级系统类方法示例:
```java
public class Classroom {
private String[][] students;
public Classroom(int rows, int cols) {
students = new String[rows][cols];
}
public void addStudent(int row, int col, String name) {
students[row][col] = name;
}
public void removeStudent(int row, int col) {
students[row][col] = null;
}
public void displayClassroom() {
for (int i = 0; i < students.length; i++) {
for (int j = 0; j < students[i].length; j++) {
if (students[i][j] != null) {
System.out.println("Row " + i + ", Col " + j + ": " + students[i][j]);
}
}
}
}
}
```
这个班级系统类有一个二维数组 `students`,它存储了学生的名字。构造函数 `Classroom(int rows, int cols)` 创建了一个指定行数和列数的二维数组。`addStudent(int row, int col, String name)` 方法可以将学生名字添加到指定的位置。`removeStudent(int row, int col)` 方法可以从指定位置删除学生名字。`displayClassroom()` 方法可以显示当前班级中所有学生的名字和位置。
阅读全文