代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/137696/5818750
cpp xmldeclimpl.cpp
/*
* Copyright 1999-2002,2004 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License
www.eeworm.com/read/136828/5844957
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/136828/5844970
java prototype.java
package com.javapatterns.prototype;
public interface Prototype extends Cloneable
{
Object clone();
}
www.eeworm.com/read/136828/5844974
java concreteprototype.java
package com.javapatterns.prototype.manager;
public class ConcretePrototype implements Prototype
{
public synchronized Object clone()
{
Prototype temp = null;
try
{
temp =
www.eeworm.com/read/136828/5844983
java concreteprototype.java
package com.javapatterns.prototype;
public class ConcretePrototype implements Prototype
{
public Object clone()
{
try
{
return super.clone();
}
www.eeworm.com/read/135869/5877512
java drawsketchframe.java
/*
* This file is part of Caliph & Emir.
*
* Caliph & Emir is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* th
www.eeworm.com/read/135758/5879015
java generatingmutation.java
/*
* YALE - Yet Another Learning Environment
* Copyright (C) 2001-2004
* Simon Fischer, Ralf Klinkenberg, Ingo Mierswa,
* Katharina Morik, Oliver Ritthoff
* Artificial
www.eeworm.com/read/133066/5908313
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/130240/5962820
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/126884/6011080
java catalogtablemodel.java
package org.trinet.util.graphics.table;
import java.util.*;
import javax.swing.event.*;
import org.trinet.jasi.*;
import org.trinet.jdbc.datatypes.*;
import org.trinet.util.*;
/** Model used t