代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/158628/11597017
java graphic.java
package ch10.section05;
public abstract class Graphic
implements IGraphic {
private String name;
public Object clone() {
try {
return super.clone();
}
catch (Clon
www.eeworm.com/read/347848/11632837
java yourcloneableclass.java
public class YourCloneableClass implements Cloneable
{
//...
public Object clone( )
{
try
{
return super.clone( );//Invocation of clone
www.eeworm.com/read/347848/11632843
java dataclass.java
/**
A sample class outline
*/
public class DataClass implements Cloneable
{
//...
public Object clone( )
{
try
{
return super.clone( );//Invocation
www.eeworm.com/read/261494/11642466
txt 好文--jive 中的设计模式 (转自ibm developerworks).txt
作者:jeru
email: jeru@163.net
日期:7/13/2001 5:48:02 PM
Jive 中的设计模式
(Design Pattern)
马旋
2001年 5月
摘要:Jive 是一个开放源码的论坛项目, 也就是我们所常见的 BBS, 采用了 SUN 公司的 JSP 技术, 相比起 j2ee 这个庞大的体系结构, 其整个
www.eeworm.com/read/258269/11873857
cpp tzobject.cpp
// tzObject.cpp: implementation of the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "stdafx.h"
#include "tzObject.h"
//
www.eeworm.com/read/154519/11949110
txt ghost使用详解.txt
Ghost 使用详解
--------------------------------------------------------------------------------
一、分区备份
使用Ghost进行系统备份,有整个硬盘(Disk)和分区硬盘(Partition)两种方式。在菜单中点
www.eeworm.com/read/153270/12044832
java copyable.java
package apriori;
/**
* Interface implemented by classes that can produce "shallow" copies
* of their objects. (As opposed to clone(), which is supposed to
* produce a "deep" copy.)
*
* @author Ei
www.eeworm.com/read/153204/12052126
cpp tzobject.cpp
// tzObject.cpp: implementation of the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "tzObject.h"
///////////////////////
www.eeworm.com/read/341217/12099762
java sheep.java
package com.javapatterns.prototype.cloneexample;
public class Sheep implements Cloneable
{
private String name = "Dolly";
public Object clone() throws CloneNotSupportedException
www.eeworm.com/read/341217/12099820
java prototype.java
package com.javapatterns.prototype;
public interface Prototype extends Cloneable
{
Object clone();
}