代码搜索:Serializable
找到约 10,000 项符合「Serializable」的源代码
代码结果 10,000
www.eeworm.com/read/127767/14336010
txt e191. returning values from a remote method.txt
Return values from remote methods must be primitive, serializable, or implement Remote. This example demonstrates the declaration and use of all three return types.
1. Define the remote interface.
www.eeworm.com/read/127767/14337983
txt e466. encrypting an object with des.txt
This example demonstrates how to encrypt a serializable object.
try {
// Generate a temporary key. In practice, you would save this key.
// See also e464 Encrypting with DES Us
www.eeworm.com/read/127651/14343844
java swimmer.java
import java.io.*;
import java.util.*;
class Swimmer implements Serializable {
String name;
int age;
String club;
float time;
boolean female;
public Swimmer(String d
www.eeworm.com/read/127651/14343856
java swimmer.java
import java.io.*;
import java.util.*;
class Swimmer implements Serializable {
String name;
int age;
String club;
float time;
boolean female;
public Swimmer(String d
www.eeworm.com/read/127651/14343869
java swimmer.java
import java.io.*;
import java.util.*;
public class Swimmer implements Serializable {
String name;
int age;
String club;
float time;
boolean female;
public Swimmer(S
www.eeworm.com/read/127651/14343896
java swimdata.java
import java.util.*;
import java.io.*;
//abstract class defining interface and deep clone routine
public abstract class SwimData
implements Cloneable , Serializable
{
public abstract int size(
www.eeworm.com/read/127651/14343906
java swimmer.java
import java.io.*;
import java.util.*;
class Swimmer implements Serializable {
String name;
int age;
String club;
float time;
boolean female;
public Swimmer(String datalin
www.eeworm.com/read/127116/14377665
java complex1.java
package com.javapatterns.immutable.complex;
final public class Complex1 extends Number
implements java.io.Serializable, Cloneable, Comparable
{
/**
* The imaginary unit.
*/
static fi
www.eeworm.com/read/226569/14458143
java employeemodel.java
package employee;
public class EmployeeModel implements java.io.Serializable
{
private String _strID;
private String _strName;
private String _strJob;
private java.sql.Date _dtHireDate;
pr
www.eeworm.com/read/124193/14590631
java reply.java
package yy;
import java.io.*;
import java.sql.Date;
public class Reply
implements Serializable {
private int replyId;
private int subjectId;
private String replyTitle;
private