为什么这个while循环不工作?

时间:2014-12-12 03:05:03

标签: java loops while-loop

    try
    {

        Employee test= null;
        while(true)
        {
            test=(Employee)inputStream.readObject();
            list.addANodeToStart(test);

        }


    }
    catch(EOFException e)
    {
        System.out.println("Reached end of file.");
        System.exit(0);
嘿伙计们,我有问题。

在try块中,我有一个代码将Employees添加到LinkedList中。出于某种原因,当我放入while(true)块时,我的整个程序不起作用,它只输出“到达文件末尾”。

然而,当我删除while(true)块时,它确实只添加了第一个Employee,因此使我的程序的其余功能完成但不完全。由于我需要添加多个Employees的列表,让用户输入一个数字并将该数字与员工编号进行比较并输出匹配的员工。

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

请尝试以下操作:

 try
{

    Employee test= null;
    while(true)
    {
        test=(Employee)inputStream.readObject();
        list.addANodeToStart(test);

    }


}
catch(EOFException e)
{
    System.out.println("Reached end of file.");
}

// process the list