我正在使用Eclipse,我收到了这个错误:
席位无法解析为变量
这是我的计划:
import java.util.*;
class Project {
public static void printRow(char[] row) {
for (char i : row) {
System.out.print(i);
System.out.print("\t");
}
System.out.println();
}
public static void method1 (char[][]seats){
seats = new char [15][4];
int i,j;
char k = 'O';
for(i=0;i<15;i++) {
for(j=0;j<4;j++) {
seats[i][j]=k;
}
}
for(char[] row : seats) {
printRow(row);
}
这是主要的:
public static void main (String[]arg) {
method1(seats);
}
我省略了不相关的代码,Eclipse标记method1(seats)
但有错误,但我不知道如何修复它。
编辑:我使用seats
的参数,因为我需要在其他方法中使用。
答案 0 :(得分:0)
编辑:正如您在评论中所说,您需要在代码中的其他位置重复使用席位。
因此,我建议您执行以下操作:
private char[][] makeSeats() {
char[][] seats = new char[15][4];
for(int i=0; i<15; i++) {
for(int j=0; j<4; j++) {
seats[i][j] = 'O';
}
}
return seats;
}
public static void method1(char[][] seats) {
for(char[] row : seats) {
printRow(row);
}
}
public static void printRow(char[] row) {
for (char i : row) {
System.out.print(i);
System.out.print("\t");
}
System.out.println();
}
public static void main(String[] args) {
char[][] seats = makeSeats();
method1(seats);
}
好吧,因为您在seats
内创建#method1()
,为什么不从方法中删除参数?
请注意,只有当您希望方法/功能基于它们的行为不同时才需要参数。如果你的参数发生任何变化,你总是做同样的事情,几乎不需要它们。
public static void method1() {
char[][] seats = new char[15][4];
int i, j;
char k = 'O';
for(i=0; i<15; i++) {
for(j=0; j<4; j++) {
seats[i][j]=k;
}
}
for(char[] row : seats) {
printRow(row);
}
}
public static void main(String[] args) {
method1();
}