检索存储在链表中的相关索引项

时间:2012-04-30 14:46:08

标签: java linked-list

我的程序中有一个链表,我正在存储组合框的索引。但是,当我检索所有记录时,我想显示相关的索引项而不是链表中存储的索引。以下是我的showAll()方法。

public void showAll()

    {
        String output="";
        Iterator myListIterator= myList.iterator();
        display.setText("");

        while(myListIterator.hasNext())
        output=output+"\n"+myListIterator.next().toString();

        display.append(output);
        display.append("\n \n Total "+myList.size()+" Entrie(s) !");

    } // end of function

以下是我的toString方法:

// ToString method
        public String toString()
        {
        return customerID+"     "+customerName+"        "+RoomTypeIndex+"   "+MealTypeIndex+"   "+DaysIndex+ "  "+tPrice;

        }// end of toString method

如何检索存储在链表中的相关索引项?

0 个答案:

没有答案