我试图通过在控制台中键入人员姓名来获取人员在数组中的位置。
public static void main(String[] args) {
Students[] student = new Students[50];
student[0] = new Students("Helen", "Jones", 10);
student[1] = new Students("Fred ", "Smith", 15);
student[2] = new Students("George", "Evans", 25);
student[3] = new Students("Malcolm", "Evans", 30);
Scanner userInput = new Scanner(System.in);
System.out.println("Enter Forename");
String name = userInput.nextLine();
Arrays.asList(student).indexOf(name);
我希望能够在控制台中输入一个名称,然后它将显示人员在数组中的位置。请提供任何形式的帮助。谢谢
jeck猫
呼啦一阵风
12345678_0001
相关分类