填空题

代码System.out.println(066)的输出结果是______。

【参考答案】

54
<上一题 目录 下一题>
热门 试题

填空题
抛出异常的语句是______语句。
填空题
在下面程序的空白处,填上适当的内容。Import java.io. *:import java.util. *;class BufferTest {public static void main(String args[])throws IOExeeption {FileOutputStream unbuf=new FileoutputStream( test.one );BufferedOutputStream bur=new ______ (new FileOutputStream( test.two ));System.out.println( write file unbuffered: +time(unbuf)+ ms );System.out.println( write file buffered: +time(buf)+ ms );}static int time(OutputStream os)throws IOException {Date then=new Date();for(int i=0;i<50000;i++)os.write(1);os.close();return(int)((new Date()).getTime()-then.getTime());}}
相关试题
  • 表达式(10 * 49.3)的类型是__...
  • 在Java语言中,用______修饰符定义的...
  • Swing中用来表示工具栏的类是javax.swing...