我遇到的问题是我正在尝试编写一个用户输入客户编号的应用程序,然后该字符串调用该对象的相应实例。
public static void main(String[]args){
//each Customer created with name, age, showed student ID card
Customer customer1 = new Customer("Aaron Stott",17, true);
//customer enters booking reference for info on booking and option to confirm
System.out.println("Please Enter Your Customer Number (customer#) :");
Scanner scan = new Scanner(System.in);
String custNum = scan.nextLine();
confirmBooking(custNum);
问题是我的方法confirmBooking需要一个对象引用而不是一个String。我该如何解决这个问题,所以confirmBooking(custNum)的工作就好像是confirmBooking(customer1)。
希望这是足够的信息! 在此先感谢:)