Java NoSuchElementException问题

staticvoidsingle_start()throwsIOException,ContinueException,NoSuchElementException{St... static void single_start() throws IOException, ContinueException, NoSuchElementException
{

String id;
System.out.println("Enter Player ID:");

int i=1;
while (i==1)
{
Scanner scan=new Scanner(System.in);
id=scan.nextLine();
scan.close();
Player player=new Player(id);

game(player);

System.out.println("Your total score is : "+player.getTotalscore());
set_recent_records(player.get_id(),player.getTotalscore());
set_top_records(player.get_id(),player.getTotalscore());

System.out.println("Another game?");
System.out.println("1.Try again");
System.out.println("2.Back to main menu");
i=scan.nextInt();
if (i==1){continue;}
if (i==2)
{
ContinueException e=new ContinueException();
throw e;
}
else
{
NoSuchElementException e=new NoSuchElementException();
throw e;
}

}
}
这段代码总是在 id=scan.nextLine();的时候报错,说Exception in thread "main" java.util.NoSuchElementException: No line found。这是为什么,谢谢
展开
 我来答
百度网友4465412
2013-04-16 · TA获得超过184个赞
知道小有建树答主
回答量:562
采纳率:0%
帮助的人:382万
展开全部
说的很明白了,已经没有下一行。执行了
else
{
NoSuchElementException e=new NoSuchElementException();
throw e;
}
追问
不是的,是scan.close()的问题,呵呵
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式