代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/166568/10016164
java zcompactprocessinginstruction.java
package org.jdom;
public class ProcessingInstruction
implements Serializable, Cloneable {
protected String target;
protected String rawData;
protected Map mapData;
protected Object pare
www.eeworm.com/read/166568/10016171
java zcompactdoctype.java
package org.jdom;
public class DocType implements Serializable, Cloneable {
protected String elementName;
protected String publicID;
protected String systemID;
protected Document docum
www.eeworm.com/read/357196/10213916
cs itemtype.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
///
/// 菜肴类型对象
///
[Serializable]
public class ItemType
{
www.eeworm.com/read/357196/10213917
cs news.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
///
/// 网站新闻对象
///
[Serializable]
public class News
{
www.eeworm.com/read/357196/10213918
cs menu.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Model
{
///
/// 菜单明细对象
///
[Serializable]
public class Menu
{
www.eeworm.com/read/279843/10384345
java bankaccount.java
/**
* A bank account has a balance that can be changed by deposits and withdrawals.
*/
import java.io.*;
public class BankAccount implements Serializable{
/**
* Constructs a bank account with a z
www.eeworm.com/read/160956/10467483
java student.java
public class Student implements java.io.Serializable
{
String number,name,discipling,grade,borth,sex;
public Student()
{
}
public void setNumber(String number)
{
www.eeworm.com/read/277415/10640518
java student.java
public class Student implements java.io.Serializable
{
String number,name,discipling,grade,borth,sex;
public Student()
{
}
public void setNumber(String number)
{
www.eeworm.com/read/159229/10676914
java student.java
public class Student implements java.io.Serializable
{
String number,name,discipling,grade,borth,sex;
public Student()
{
}
public void setNumber(String number)
{
www.eeworm.com/read/154303/7106968
txt ex8_11.txt
Example 8.11 RowSetWrapperList.java: Inner class DataRowListIterator
package com.corej2eepatterns.to.lists;
// imports
public class RowSetWrapperList
implements List, Serializable {
. .