我正在使用 java PL 制作座位监控系统。我的 ComputerSeats 类中有这个方法:
public void occupySeat()
{
seatOccupied[station-1] = true;
mtr.showArrayIdVal().setText(stud.showField().getText());
seat[station-1].setBackground(Color.red);
occupiedSeatCounter++;
}
ShowArrayIdVal 包含一个Jlabel[] object
,这个标签的值为“Vacant Station”,我曾经setText(stud.showField().getText())
将“Vacant Station”更改为我使用输入的值JTextField
。但是,每当我编译它时,它都会包含一个错误,指出它找不到settext()
。