网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

请完成程序,首先由一个类simple实现Serializable接口,并有三个成员变量,分别为int型、double型和String型,可以用toString的方法显示这三个成员变量。在main方法中创建这个simple的持久对象,根据用户在命令行输入的三个参数来设定其中成员变量的值。然后,将这个对象写入名为TheSerial.data的文件中,并显示成员变量。最后从文件TheSerial.data中读出三个成员变量并显示出来。

注意:请勿修改main()主方法和其他已有语句内容,仅在横线处填入适当语句。

import java.io.*;

class TheSerial implements Serializable

{

private int intvalue;

private double doublevalue;

private String string;

The Serial ()

{

intvalue=123;

doublevalue=12.34;

string="Serialize Test";

}

public void setDouble(double d)

{

doublevalue=d;

}

public void setInt(int i)

{

intvalue=i;

}

public void setString(String s)

{

string=s;

}

public String to String()

{

return("int="+intvalue+" double="+doublevalue+" string="+string);

}

}

public class simple

{

public static void main(String[] args)

{

The Serial e1=new TheSerial();

TheSerial e2;

try

{

e1.setInt(Integer.parseInt(args[0]));

e1.setDouble(Double.parseDouble(args[1]));

e1.setString(args[2]);

}

catch(Exception e)

{

e1.setString(e.getMessage());

}

System.out.println(e1);

try

{

FileOutputStream S=new FileOutputStream("TheSerial.data");

ObjectOutputStream OS=new ObjectOutputStream(oS);

______;

}

catch(IOException ioException)

{

System.out.println (ioException.getMessage ());

}

try

{

FileInputStream iS=new FileInputStream("TheSerial.data");

ObjectInputStream IS=new ObjectInputStream(iS);

______;

System.out.println(e2);

}

catch(IOException ioException)

{

System.out.println(ioException.getMessage());

}

catch(ClassNotFoundException cnfException)

{

System.out.println(cnfException.getMessage());

}

}

}


参考答案

更多 “ 请完成程序,首先由一个类simple实现Serializable接口,并有三个成员变量,分别为int型、double型和String型,可以用toString的方法显示这三个成员变量。在main方法中创建这个simple的持久对象,根据用户在命令行输入的三个参数来设定其中成员变量的值。然后,将这个对象写入名为TheSerial.data的文件中,并显示成员变量。最后从文件TheSerial.data中读出三个成员变量并显示出来。注意:请勿修改main()主方法和其他已有语句内容,仅在横线处填入适当语句。import java.io.*;class TheSerial implements Serializable{private int intvalue;private double doublevalue;private String string;The Serial (){intvalue=123;doublevalue=12.34;string="Serialize Test";}public void setDouble(double d){doublevalue=d;}public void setInt(int i){intvalue=i;}public void setString(String s){string=s;}public String to String(){return("int="+intvalue+" double="+doublevalue+" string="+string);}}public class simple{public static void main(String[] args){The Serial e1=new TheSerial();TheSerial e2;try{e1.setInt(Integer.parseInt(args[0]));e1.setDouble(Double.parseDouble(args[1]));e1.setString(args[2]);}catch(Exception e){e1.setString(e.getMessage());}System.out.println(e1);try{FileOutputStream S=new FileOutputStream("TheSerial.data");ObjectOutputStream OS=new ObjectOutputStream(oS);______;}catch(IOException ioException){System.out.println (ioException.getMessage ());}try{FileInputStream iS=new FileInputStream("TheSerial.data");ObjectInputStream IS=new ObjectInputStream(iS);______;System.out.println(e2);}catch(IOException ioException){System.out.println(ioException.getMessage());}catch(ClassNotFoundException cnfException){System.out.println(cnfException.getMessage());}}} ” 相关考题
考题 请完成以下程序,首先由一个类Example2_3实现Serializable接口,并有三个成员变量,分别为int型、double型和String型,可以用toString的方法显示这三个成员变量。在main方法中创建这个Example2_3的持久对象,根据用户在命令行输入的三个参数来设定其中成员变量的值。然后,将这个对象写入名为TheSerial.data的文件,并显示成员变量。最后从文件TheSerial.data中读出三个成员变量并显示出来。注意:请勿改动main()主方法和其他已有语句内容,仅在横线处填入适当语句。import java.io.*;class TheSerial implements Serializable{private int intValue;private double doubleValue;private String string;TheSerial(){intValue = 123;doubleValue = 12.34;string = "Serialize Test";}public void setDouble(double d){doubleValue = d;}public void setInt(int i){intValue = i;}public void setString(String s){string = s;}public String toString(){return("int="+intValue+"double="+doubleValue+" string="+string);}}public class Example2_3{public static void main(String argv[]){TheSerial e1 = new TheSerial();TheSerial e2;try{e1.setInt(Integer.parseInt(argv[0]));e1.setDouble(Double.parseDouble(argv[1]));e1.setString[argv[2]);}catch(Exception e){e1.setString(e.getMessage{));}System.out.println(e1);try{FileOutputStream S = new FileOutputStream("TheSerial.data");ObjectOutputStream IS = new ObjectOutputStream(oS);______;}catch(IOException ioException){System.out.println(ioException.getMessage());}try{FileInputStream iS = new FileInputStream("TheSerial. data");ObjectInputStream IS = new ObjectInputStream(iS);______System.out.println(e2);}catch(IOException ioException){System.out.println(ioException.getMessage());}catch(ClassNotFoundException cnfException){System.out.println(cnfException.getMessage());}}}

考题 关于类型转换的说法中,错误的是( )。A.如果a为血型变量,b为char型变量,则a+b的值为血型B.如果a为float型变量,b为int型变量,则a-b的值为float型C.如果a为double型变量,b为float型变量,则a*b的值为double型D.如果a为血型变量,b为血型变量,则a/(double)b的值为int型

考题 下列关于单目运算符++,叙述正确的是A.运算对象可以是任何变量和常量B.运算对象可以是char型和int型变量,但不能是float型变量C.可以是int型变量,但不能是double型和float型变量D.运算对象可以是char型,int型,float型和double型变量

考题 3、系统提供的默认拷贝构造函数实现的是“浅拷贝”,下列关于浅拷贝的说法中正确的是()。A.当一个类中有指针成员变量时,浅拷贝有可能会导致一片内存被重复释放B.当一个类中有指针成员变量时,浅拷贝有可能导致一个对象中保存的数据不正确C.如果一个类中只有int型和double型的成员变量,则浅拷贝不会出现任何问题D.如果一个类中有一个成员变量是char型数组,则使用浅拷贝会存在问题

考题 【单选题】下列关于单目运算符++、- -的叙述中正确的是()A.它们的运算对象可以是任何变量和常量B.它们的运算对象可以是char型变量和int型变量,但不能是float型变量C.它们的运算对象可以是int型变量,但不能是double型变量和float型变量D.int型变量和float型变量

考题 下列关于自增运算符++和自减运算符--的叙述中正确的是()。A.它们的运算对象可以是任何类型的变量和常量B.它们的运算对象可以是char型变量和int型变量,但不能是float型变量C.它们的运算对象可以是int型变量,但不能是double型变量和float型变量D.int型变量和float型变量

考题 186、系统提供的默认拷贝构造函数实现的是“浅拷贝”,下列关于浅拷贝的说法中正确的是()。A.当一个类中有指针成员变量时,浅拷贝有可能会导致一片内存被重复释放B.当一个类中有指针成员变量时,浅拷贝有可能导致一个对象中保存的数据不正确C.如果一个类中只有int型和double型的成员变量,则浅拷贝不会出现任何问题D.如果一个类中有一个成员变量是char型数组,则使用浅拷贝会存在问题

考题 一个Double型数据可以自动完成到int型数据的自动转换()

考题 下列关于单目运算符++,叙述正确的是A.它们的运算对象可以是任何变量和常量B.它们的运算对象可以是char型和int型变量,但不能是float型变量C.它们的运算对象可以是int型变量,但不能是double型和float型变量D.它们的运算对象可以是char型,int型,float型和double型变量