代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/230048/6789172
java horrorflick.java
//: appendixa:HorrorFlick.java
// You can insert Cloneability at any level of inheritance.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in Co
www.eeworm.com/read/230048/6789175
java checkcloneable.java
//: appendixa:CheckCloneable.java
// Checking to see if a reference can be cloned.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.
www.eeworm.com/read/230048/6789180
java deepcopy.java
//: appendixa:DeepCopy.java
// Cloning a composed object.
// {Depends: junit.jar}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.
www.eeworm.com/read/474608/6813914
java ersbox.java
/**
* File: ErsBox.java
* User: Administrator
* Date: Dec 15, 2003
* Describe: 俄罗斯方格的 Java 实现
*/
import java.awt.*;
/**
* 方格类,是组成俄罗斯方块的基本元素,用自己的颜色来表示块的外观
* 一个类实现Cloneable接口,就意味着可以合
www.eeworm.com/read/473607/6847004
java cloneablecircle.java
class CloneableCircle extends Circle implements Cloneable
{
private Name creator = new Name("Yong", "D", "Liang");
public CloneableCircle(double radius)
{
super(radius);
}
public
www.eeworm.com/read/471100/6896993
java ersbox.java
/**
* File: ErsBox.java
* User: Administrator
* Describe: 俄罗斯方块的 Java 实现
*/
import java.awt.*;
/**
* 方格类,是组成块的基本元素,用自己的颜色来表示块的外观
*/
public class ErsBox implements Cloneable
//(A
www.eeworm.com/read/471126/6897834
java state.java
public class State {
private int[] state = new int[9];
private int size = 1;
private State[] expendStates;
public State(int[] s){
int i;
for(i=0;i
www.eeworm.com/read/192685/8339337
html 17997.html
Re: 关于 Recordset.Clone方法?
Re: 关于 Recordset.Clone方法?
www.eeworm.com/read/171938/9729220
java flea.java
public class Flea extends Animal implements Cloneable
{
// Constructor
public Flea(String aName, String aSpecies)
{
super("Flea"); // Pass the type to the base