0

我有这个任务,我正在尝试编写代码,但不幸的是,这让我很难过。

我搜索了互联网和我的教科书,但似乎找不到这种特殊困境的例子。

基本上,我需要为火车编写一个预订引擎,我们得到了我们打算使用的启动代码,并且基本上写出了我们的方法并将它们插入到适当的类中。

主要问题是我们需要将包含 trainticket 对象的主数组封装在一个单独的类中,并且基本上编写 mutator 和 accessor 方法需要与数组进行任何交互,以在访问时保持数组不可访问和安全。需要。

这是程序的驱动程序类

Private static void menuAdd() 


{
       String  passName,op1,op2;
       int seatNum;
       Boolean FCOption,waiter,indicator;
       int duration;
       char fClass,wService;

   System.out.print("Please Enter a seat number :");
   seatNum = stdin.nextInt();
   stdin.nextLine();

   System.out.print("Please Enter the passenger name :");
   passName = stdin.nextLine();
   System.out.print(passName);

   System.out.print("Please Enter number of legs for this trip :");
   duration = stdin.nextInt();

   System.out.println("Would you like to consider a First Class ticket for an additional $20 per leg? :");
   System.out.print("Please enter Y/N");
   op1 = stdin.next();
   fClass =op1.charAt(0);

   stdin.nextLine();
   System.out.print("Would you like to consider a waiter service for a flat $15 Fee?");
   System.out.print("Please enter Y/N");
   op2 = stdin.next();
   wService =op2.charAt(0);


   //Now we create the ticket object

   TrainTicket ticketx = new TrainTicket(seatNum,passName,duration);

   System.out.println("This is an object test printing pax name"+ticketx.getName());

   TicketArray.add(ticketx);

}

所以基本上,我编写代码向用户请求各种详细信息,然后使用 TrainTicket 对象的构造函数调用实例化对象,当我将对象传递给数组类时使用

TicketArray.add(ticketx);

eclipse 告诉我“无法从 TicketArray 类型中对非静态方法 add(TrainTicket) 进行静态引用”

这是数组类的样子

    Public class TicketArray
{
   // ..............................................
   // .. instance variables and constants go here ..
   // ..............................................
    int counter ;
    int arraySize =100 ;

   // constructor
   public TicketArray()
   {
      // ....................
      // .. implement this ..
      // ....................
       TrainTicket [] tickets =new TrainTicket[arraySize];
   }

   // add() method:
   // take the passed in TrainTicket object and attempt to store it in the
   // data structure. If the structure is full, or the seat of the given
   // TrainTicket has already been booked, the operation should return
   // false; otherwise return true.

   public boolean add(TrainTicket data)
   {
      // ....................
      // .. implement this ..
      // ....................

       tickets[counter]=data;
      // dummy return value so the skeleton compiles
      return false;
   }

任何想法为什么它不起作用?如果有人可以解释如何以这种方式封装数组,我将不胜感激,我熟悉构造函数的工作方式及其编写方法,但由于某种原因,我发现很难用数组做同样的事情.

提前致谢 。

4

1 回答 1

2

这里的问题不在于 mutator 或 accessor 方法甚至数组,而在于您TicketArray在尝试使用该类之前没有创建该类的实例。add(Ticket t)被定义为实例方法,这意味着您需要先拥有一个实例,TicketArray然后才能添加到它。

尝试这个:

//create a new Ticket
TrainTicket ticketx = new TrainTicket(seatNum,passName,duration);

//create a new Ticket Array
TicketArray tarr = new TicketArray();
tarr.add(ticketx);
于 2012-05-20T04:00:57.473 回答