代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/186776/8910812
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/186311/8945795
java movestep.java
import java.awt.Point;
public class MoveStep implements java.io.Serializable
{
public Point pStart,pEnd;
public MoveStep(Point p1,Point p2)
{
pStart=p1;
pEnd=p2;
}
}
www.eeworm.com/read/383432/8947455
java result.java
package risk.tools.translation;
import java.util.Locale;
import java.io.Serializable;
public class Result implements Serializable {
public String node;
public Locale locale;
public St
www.eeworm.com/read/427147/8973194
java stringlist.java
import java.io.*;
public class StringList implements Serializable{
private int size=0;
private Node head=null;
private Node end=null;
private static class Node implements Serializable
www.eeworm.com/read/185687/8991960
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/185687/8992007
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/426885/8993326
java packet.java
//: Packet.java
//: 数据分组格式
//package classes;
import java.io.*;
public class Packet implements Serializable
{
}///:~
www.eeworm.com/read/426885/8993362
java packet.java
//: Packet.java
//: 数据分组格式
//package classes;
import java.io.*;
public class Packet implements Serializable
{
}///:~
www.eeworm.com/read/426659/9007094
cs helloworld.cs
using System;
using MyInterface;
[Serializable]
public class HelloWorld : MarshalByRefObject, IHelloWorld
{
public string Say()
{
System.Diagnostics.Debugger.Break();
www.eeworm.com/read/426591/9012031
java riverscene.java
import java.io.Serializable;
/**
* Combines two riversides. Serves mainly as a data object.
*/
class RiverScene implements Serializable {
RiverSide lside, rside; // Package access.
pu