我需要一些關於java的幫助,並返回一個數組的結果。試圖打印一個數組
我的數組列表存儲了來自餐廳的訂單(由訂單類創建)。 Deliverylog類(創建數組列表)然後有一個方法將訂單添加到名爲waitingList的數組列表中。
每個訂單都有藏漢它的屁股細節交貨時間等參考號碼..
什麼我嘗試做,但還沒有得到一個線索是,是創建一個參數的方法(INT ref)將在數組列表中搜索具有與輸入的相同參考號的項目。當它發現它時會返回訂單,否則返回null。
任何幫助appriciated。
代碼
/**
* Show a order.
* @param refnum The reference number of the order to be shown
*/
public void findOrderWaiting(int refnum)
{
if(refnum < 0) {
// This is not a valid reference number
}
else if(refnum <= numberOfOrders()) {
// This is a valid reference number
System.out.println(waitingList.get(refnum));
}
else {
// This is not a valid reference number
}
}
好的。那麼,你到現在爲止有什麼?向我們展示代碼。 –
編寫代碼,發佈它,我們將一起討論它。 – Maroun
看到您的代碼會更有趣.... – pbhd