代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/253985/12170881
java student.java
package java_io;
import java.io.*;
/**
* 对象序列化。
* 对象序列化:将对象的所有成员变量保存起来,转换成一串连续的字节数据写入到字节流中去。
* 这些字节可以在以后再次还原为对象原来的状态。
*
* 要实现对象序列化,需使用对象流类ObjectInputStream和ObjectOutputStream.
*
* 程序中定义一个Studen
www.eeworm.com/read/151733/12178558
java address.java
package test;
import java.io.*;
public class Address implements Serializable
{
private String country;
private String city;
private String street;
public Address(String country,String
www.eeworm.com/read/233129/14167442
java loginresponse.java
package RemoteAccess.Object;
import java.io.*;
public class LoginResponse implements MyObject,Serializable{
public String msg;
public LoginResponse(String msg){
this.msg=msg;
}
pub
www.eeworm.com/read/130612/14181200
java person.java
// Class encapsulating a person's name and address
import java.io.Serializable;
public class Person implements Serializable {
private Name name;
private Address address;
public Person(N
www.eeworm.com/read/130612/14181209
java person.java
// Class encapsulating a person's name and address
import java.io.Serializable;
public class Person implements Serializable {
private Name name;
private Address address;
public Person
www.eeworm.com/read/130612/14181218
java person.java
// Class encapsulating a person's name and address
import java.io.Serializable;
public class Person implements Serializable {
private Name name;
private Address address;
public Person
www.eeworm.com/read/130612/14181219
java indexentry.java
// Class encapsulating an index to the IndexedPersons.bin file
// Each object stores a second name and the position in the file where
// the corresponding record can be found. i.e. the first record
www.eeworm.com/read/130612/14181226
java person.java
// Class encapsulating a person's name and address
import java.io.Serializable;
public class Person implements Serializable {
private Name name;
private Address address;
public Person(N
www.eeworm.com/read/130612/14181228
java indexentry.java
// Class encapsulating an index to the IndexedPersons.bin file
// Each object stores a second name and the position in the file where
// the corresponding record can be found. i.e. the first record
www.eeworm.com/read/130492/14189089
java pagepredicate.java
/*
* WebSPHINX web crawling toolkit
* Copyright (C) 1998,1999 Carnegie Mellon University
*
* This library is free software; you can redistribute it
* and/or modify it under the terms of the GNU