代码搜索:clone

找到约 4,459 项符合「clone」的源代码

代码结果 4,459
www.eeworm.com/read/486925/6520729

java concreteprototype.java

package com.javapatterns.prototype; public class ConcretePrototype implements Prototype { public Object clone() { try { return super.clone(); }
www.eeworm.com/read/481537/6642730

c fork.c

/* * linux/kernel/fork.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * 'fork.c' contains the help-routines for the 'fork' system call * (see also entry.S and others). * Fork is rathe
www.eeworm.com/read/478645/6712288

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/478476/6717964

java ersbox.java

/** * File: ErsBox.java * User: Administrator * Describe: 俄罗斯方块的 Java 实现 */ import java.awt.*; /** * 方格类,是组成块的基本元素,用自己的颜色来表示块的外观 */ public class ErsBox implements Cloneable //(A
www.eeworm.com/read/477157/6739421

c fork.c

/* * linux/kernel/fork.c * * Copyright (C) 1991, 1992 Linus Torvalds */ /* * 'fork.c' contains the help-routines for the 'fork' system call * (see also entry.S and others). * Fork
www.eeworm.com/read/408870/11366922

htm chapter12.htm

Thinking in Java | Chinese Version by Trans Bot
www.eeworm.com/read/263209/11371134

java~ test57.java~

class Cricle { int radius; Circle(int radius) { this.radius = radius; } protected Object clone() { return new Circle(radius); } int getRadius { return fadius;
www.eeworm.com/read/263209/11371150

java test57.java

class Circle { int radius; Circle(int radius) { this.radius = radius; } protected Object clone() { return new Circle(radius); } int getRadius() { return radius;
www.eeworm.com/read/405240/11467741

html 11-21.html

clone(true)方法
www.eeworm.com/read/401625/11553327

java myobject.java

public class MyObject implements Cloneable { public int data; public MyObject(int i) { data=i; } public boolean equals(Object obj) { if (obj != null && (obj instanceof MyObject)) if (t