单项选择题给出下列的不完整的方法,则下列的哪个声明可以被加入行①完成此方法的声明①② { success = connect( );③ if (success = = - 1 ) {④ throw new TimedoutException( )⑤ }⑥ }
单项选择题有如下程序段if(x>0) { System.out.println( first );}else if (x > -4) { System.out.println( second );}else { System.out.println( third );}x的取值在什么范围内时,将打印出字符串“second