while(true){ System.out.println("输入命令:1-按照名称查找图书;2-按照序号查找图书"); String book; try{ int command=intputCommand(); switch(command) { case 1: book=getbookbyname(books);//getbookbyname是什么?方法 词组 System.out.println("book:"+book); break;

来源:1-9 经验总结

狂热爱好者

2015-01-26 18:41

while(true)    try   什么语法啊,哪里有 true  or false  ?

写回答 关注

1回答

  • 康振宁
    2015-01-27 09:36:00

    while(表达式)中的条件表达式类型必须为boolean型,try-catch是捕获异常前面有讲啊

    康振宁 回复狂热爱好者

    看你代码中,是你自己写的while(true)啊

    2015-01-27 16:36:21

    共 2 条回复 >

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题