代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/466324/7032702
java exercise18_1.java
import java.util.*;
public class Exercise18_1 {
public static void main(String[] args) {
HashSet set1 = new HashSet(Arrays.asList(
new String[]{"George", "Jim", "John", "Blake", "Kev
www.eeworm.com/read/466324/7032910
java exercise18_4.java
import java.util.*;
public class Exercise18_4 {
public static void main(String[] args) {
ArrayList list1 = new ArrayList(Arrays.asList(
new String[]{"George", "Jim", "John", "Blake", "Kev
www.eeworm.com/read/456187/7355559
java exercise18_4.java
import java.util.*;
public class Exercise18_4 {
public static void main(String[] args) {
ArrayList list1 = new ArrayList(Arrays.asList(
new String[]{"George", "Jim", "John", "Blake", "Kev
www.eeworm.com/read/187617/8618183
52312
From: Philip.Schuler@f421.n109.z1.his.com (Philip Schuler)
Sender: UUCP@Clone.his.com
Path: cantaloupe.srv.cs.cmu.edu!magnesium.club.cc.cmu.edu!news.sei.cmu.edu!cis.ohio-state.edu!zaphod.mps.ohio-stat
www.eeworm.com/read/288488/8628899
java xobj.java
package lockmgr;
public class XObj
{
protected int xid = 0;
XObj() {
super();
this.xid = 0;
}
XObj(int xid) {
super();
if (xid > 0)
www.eeworm.com/read/284998/8877744
cpp trash.cpp
//: C09:Trash.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "Trash.h"
using namespa
www.eeworm.com/read/284132/8961550
java russiabox.java
class RussiaBox implements Cloneable
{
private boolean isColor;
public RussiaBox(boolean isColor)
{
this.isColor = isColor;
}
/*
*设置颜色
*/
public void setColor(boolean isColor
www.eeworm.com/read/281673/9142436
cpp trash.cpp
//: C09:Trash.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
#include "Trash.h"
using namespa
www.eeworm.com/read/177531/9449737
java value.java
package entity;
/**
* @author yangan
*/
public class Value implements Cloneable {
public Value() {
super();
}
public Value(String value) {
super();
this.value = value;
}
private Str
www.eeworm.com/read/371989/9526194
java numericvalue.java
public class NumericValue extends Expression {
private double value;
public NumericValue(double value) {
this.value = value;
}
public double getValue() { return value; }
public Object c