代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/231466/14232085
cs dataaccount.cs
using System;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary ;
namespace Eboer.MIS.MF.WinForm.DataAccount
{
///
/// 帐套属性,要被序列化
///
www.eeworm.com/read/231466/14232114
cs deskconfig.cs
using System;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary ;
namespace Eboer.MIS.MF.WinForm
{
///
/// DeskConfig 的摘要说明。
///
www.eeworm.com/read/129207/14257920
java shape.java
/*
* Created on 2005-4-2
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package bubbletea;
import java.awt.G
www.eeworm.com/read/129197/14258284
java greenbean.java
/*
* GreenBean.java
*
* Created on August 28, 2002, 10:41 AM
*/
package com.samspublishing.jpp.ch15;
import java.io.Serializable;
import java.awt.*;
import java.beans.*;
/**
*
* @author Ste
www.eeworm.com/read/129125/14264700
java address.java
import java.io.*;
public class Address implements Serializable
{ protected String first, email;
public Address()
{ first = email = ""; }
public Address(String _first, String _email
www.eeworm.com/read/129125/14264750
java address.java
import java.io.*;
public class Address
implements Serializable
{
protected String first, email;
public Address()
{
first = email = "";
}
public Address(String _
www.eeworm.com/read/129125/14264784
java address.java
import java.io.*;
public class Address implements Serializable
{ protected String first, email;
public Address()
{ first = email = ""; }
public Address(String _first, String _email
www.eeworm.com/read/128961/14271342
java people.java
public class People implements java.io.Serializable
{
String name=null;
int time=0;
public People(String name,int t)
{
this.name=name;
time=t;
}
pu
www.eeworm.com/read/128846/14276600
txt 75.txt
//
对象序列化
对象的持续性----可以永久性保存一个对象的状态并在需要时获取该对象的信息
(重新创建一个完全相同的对象);
对象序列化----通过写出对象的状态数据来记录一个对象。
对象序列化的主要任务:写出对象所有成员变量的值,包括引用类型成员变量对应的对象的信息。
//
对象序列化的实现方式
要序列化一个对象,其所属的类必须实现以下两种接口之一:
Serializ ...
www.eeworm.com/read/128696/14281460
java zclipboard.java
/*
* put your module comment here
* formatted with JxBeauty (c) johann.langhofer@nextra.at
*/
package ezcell;
// the following code from
// Core Java2 Volume II :Advanced Features ( Ca