为了账号安全,请及时绑定邮箱和手机立即绑定

为什么输出的是对象的存储地址???

http://img1.sycdn.imooc.com//58c1404100014a2203220244.jpg

public class ObjectSeriaDemo1 {

public static void main(String[] args) throws Exception{

String file = "demo/obj.dat";

//1.对象的序列化

/*ObjectOutputStream oos = new ObjectOutputStream(

new FileOutputStream(file));

Student stu = new Student("10001", "张三", 20);

oos.writeObject(stu);

oos.flush();

oos.close();*/

ObjectInputStream ois = new ObjectInputStream(

new FileInputStream(file));

Student stu = (Student)ois.readObject();

System.out.println(stu);

ois.close();

}


}


正在回答

1 回答

因为在Student类中,你没有创建toString()方法

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么输出的是对象的存储地址???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信