代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/153528/5649791
cs class1.cs
using System;
using System.IO;
using System.Collections;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
namespace Serialize
{
[Serializable]
www.eeworm.com/read/153528/5649805
cs class1.cs
using System;
using System.IO;
using System.Collections;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Soap;
namespace SerializeSOAP
{
[Serializable]
www.eeworm.com/read/153151/5652820
java showpickle.java
package com.javapatterns.serializable.instantiate;
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
/**
*
* The purpose of this class is to display a set of buttons
* whi
www.eeworm.com/read/152952/5655027
java money.java
package com.ora.rmibook.chapter15.jndiaccounts.valueobjects;
import java.io.*;
public class Money implements Serializable {
protected int _cents;
public Money(Integer cents) {
www.eeworm.com/read/152952/5655080
java money.java
package com.ora.rmibook.chapter23.rmiiiopaccounts.valueobjects;
import java.io.*;
public class Money implements Serializable {
protected int _cents;
public Money(Integer cents) {
www.eeworm.com/read/472973/6853483
java announce.java
package tarena.entity;
import java.util.Date;
/**
* Announce entity.
*
* @author MyEclipse Persistence Tools
*/
public class Announce implements java.io.Serializable {
// Fields
www.eeworm.com/read/193172/8249788
java bbsuser.java
package domain;
public class BBSUser implements java.io.Serializable
{
private int userId;
private String userName;
private String userPassword;
private String email;
private int level;
www.eeworm.com/read/193172/8249791
java bbssort.java
package domain;
public class BBSSort implements java.io.Serializable
{
private int sortId;
private String sortName;
private String editHost;
public BBSSort()
{
}
public BBSSort(int sor
www.eeworm.com/read/192928/8264180
cs c_historyinfo.cs
using System;
namespace Club.Framework.Components
{
///
/// 标签
///
[Serializable]
public class c_HistoryInfo
{
private string url;
private string m_ID;
pri
www.eeworm.com/read/369062/9664495
java flowitem.java
package org.shaoye.workflow.item;
import java.io.*;
import java.util.*;
public class FlowItem implements Serializable{
private String flowName=""; //���������
private String flowDes