[单选题]

阅读下列代码段 ByteArrayOutputStream bout=new ByteArrayOutputStream(); ObjectOutputStream ut=new ObjectOutputStream(bout); out. writeObject(this); out. close(); 以上代码段的作用是

A.将对象写入内存

B.将对象写入硬盘

C.将对象写入光盘

D.将对象写入文件

参考答案与解析:

相关试题

阅读下面代码ByteArrayOutputStream bout=new Byt

[单选题]阅读下面代码 ByteArrayOutputStream bout=new ByteArrayOutputStream(); ObjectOutputStream ut=new ObjectOutputStream(bout); out.writeObject(this); out.close();A.将对象写入内存B.将对象写入硬盘C.将对象写入光盘D.将对象写入文件

  • 查看答案
  • 阅读下列代码后publicclass Person{intarr[]=new i

    [单选题]阅读下列代码后 publicclass Person{ intarr[]=new int[10]; publicstaticvoidmain(Stringargs[]){ System.out.println(alt[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); }}正确的说法是A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println (arr[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码后public class Person{int arr[]=new

    [单选题]阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是( )。A.编译时将产生错误B.编译时正确,运行时将产生错误C.输出零D.输出空

  • 查看答案
  • 阅读下列代码段class TestimplementsRunnable{publ

    [单选题]阅读下列代码段 class TestimplementsRunnable{ publicintrun(){ inti=0; while(true){ i++; System.out.println("i="+1); } } } 上述代码的编译结果是( )。A.程序通过编译并且run()方法可以正常输出递增的i值B.程序通过编译,调用run()方法将不显示任何输出C.程序不能通过编译,因为while的循环控制条件不能为“true”D.程序不能通过编译,因为run()方法的返向值类型不是void

  • 查看答案
  • 阅读下列代码段,选出该代码段正确的文件名______。class A {void

    [单选题]阅读下列代码段,选出该代码段正确的文件名______。class A{void methodl(){System.out.println("methodl in class A");}}public class B{void method2(){System.out.println("method2 in class B");}public static void main(String args[]){System.out.println("main() in class B");

  • 查看答案
  • 阅读下列代码段,选出该代码段的正确文件名()。class A{void meth

    [单选题]阅读下列代码段,选出该代码段的正确文件名( )。 class A { void methodl() { System.out.println("methodl in class A"); } } public class B { void method2() { System.out.println("method2 in class B"); } public static void main(String args[]) { System.out.println("main in

  • 查看答案
  • 阅读下列代码段,选出该代码段的正确文件名()。class A{void meth

    [单选题]阅读下列代码段,选出该代码段的正确文件名( )。 class A { void method1() { System.out.println("method1 in class A"); } } public class B { void method2() { System.out.println("method2 in class B"); } public static void main(String args[]) { System.out.println("main in

  • 查看答案
  • 阅读下列代码段Class Test implements Runnable {P

    [单选题]阅读下列代码段C.lass Test implements Runnable {Public int run( ) {Int i = 0;While (true) {i++;System.out.println ( “ i= ” +i);}}}上述代码的编译结果是A. )程序通过编译并且 run () 方法可以正常输出递增的 i 值B. )程序通过编译,调用 run () 方法将不显示任何输出C. )程序不能通过编译,因为 while 的循环控制条件不能为 “ true ”D. )程序不能通过编

  • 查看答案
  • 阅读下列代码段ByteArrayOutputStream bout=new By