代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/120691/14792429
java clonedemo.java
import java.awt.*;
import java.applet.*;
class DrawOval implements Cloneable
{
int x, y, width, height;
public void setPos(int x1, int y1)
{
x = x1;
y = y1;
}
public void setOv
www.eeworm.com/read/120429/14803835
java stack.java
// Page 47
import java.util.*;
public class Stack implements Cloneable {
private Object[] elements;
private int size = 0;
public Stack(int initialCapacity) {
this.eleme
www.eeworm.com/read/119324/14833318
txt 接口.txt
接口 List.1 TheInterface/TheInterface.java
接口 List.2 InterfaceDemo/TContainerInterface.java
接口 List.3 InterfaceDemo/TContainer.java
接口 List.4 InterfaceDemo/InterfaceDemo.java
接口 List.5 CloneDemo
www.eeworm.com/read/214482/15098877
java serialclonetest.java
/**
@version 1.20 17 Aug 1998
@author Cay Horstmann
*/
import java.io.*;
import java.util.*;
public class SerialCloneTest
{
public static void main(String[] args)
{
www.eeworm.com/read/114100/15099762
html 17997.html
Re: 关于 Recordset.Clone方法?
Re: 关于 Recordset.Clone方法?
www.eeworm.com/read/213563/15130331
java graphictool.java
package ch10.section05;
import java.util.*;
public class GraphicTool {
public GraphicTool() {
}
public static void main(String[] args) {
//----- Initial our prototype instance
www.eeworm.com/read/213563/15130336
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/210307/15202030
java serialclonetest.java
/**
@version 1.20 17 Aug 1998
@author Cay Horstmann
*/
import java.io.*;
import java.util.*;
public class SerialCloneTest
{
public static void main(String[] args)
{
www.eeworm.com/read/171479/5394766
groovy closureclonetest.groovy
/**
* @author James Strachan
* @version $Revision: 1.3 $
*/
class ClosureCloneTest extends GroovyTestCase {
void testCloneOfClosure() {
def