填空题
诊断和改正程序中错误的工作通常称为【 】。
【参考答案】
调试或程序调试或软件调试或Debug(英文字母大小写均可)或凋试程序或调试软件
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
给出下列的程序代码片段,m为哪个值时将会输出defaultswitch(m){ case 0:System.out.println( case0 );case 1:System.out.println( case 1 );break;case 2:System.out.println( case 2 );break;default:System.out.println( default );}
A.0
B.1
C.2
D.3
点击查看答案&解析
单项选择题
在oneMethod( )方法运行正常的情况下,程序段将输出( )。public void test( ){try { oneMethod( );System.out.println( condition 1 );} catch (ArrayIndexOutOfBoundsException e){System.out.println( condition 2 );} catch(Exception e){System.out.println( condition 3 );} finally {System.out.pritln( finally );}}
A.condition 1
B.condition 2
C.condition 3
D.condition 1
点击查看答案&解析
相关试题
在事件处理的过程中,主要涉及到的3个对象...
下列是一个类的定义程序段,请补充完整。pu...
mouseDragged()方法是MouseMotionListene...
表达式是由操作数和【 】按一定的语法形式...
break语句最常见的用法是在switch语句中,...