代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/126656/14409935
cpp prototype_lab.cpp
// Purpose. Prototype design pattern lab
//
// Problem. See the problem statement for the Factory Method lab. Beyond
// the issues discussed there, we would also like to eliminate the "case"
// sta
www.eeworm.com/read/226560/14459027
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/224892/14564471
cs angledialog.cs
using System;
using System.Windows.Forms;
using System.Drawing;
using PhotoSprite.ImageProcessing;
namespace PhotoSprite.Dialog
{
public partial class AngleDialog : Form
{
///
www.eeworm.com/read/224892/14564474
cs magicdialog.cs
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using PhotoSprite.ImageProcessing;
namespace PhotoSprite.Dialog
{
public partial class MagicD
www.eeworm.com/read/224892/14564499
cs degreedialog.cs
using System;
using System.Windows.Forms;
using System.Drawing;
using PhotoSprite.ImageProcessing;
namespace PhotoSprite.Dialog
{
public partial class DegreeDialog : Form
{
///
www.eeworm.com/read/224892/14564576
cs inosculatedialog.cs
using System;
using System.Windows.Forms;
using System.Drawing;
using System.Drawing.Drawing2D;
using PhotoSprite.ImageProcessing;
namespace PhotoSprite.Dialog
{
public partial class Inoscu
www.eeworm.com/read/122684/14674524
cpp trash.cpp
//: C25:Trash.cpp {O}
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
#include "Trash.h"
using n
www.eeworm.com/read/120923/14783304
cpp trash.cpp
//: C11:Trash.cpp {O}
// From "Thinking in C++, 2nd Edition, Volume 2"
// by Bruce Eckel & Chuck Allison, (c) 2001 MindView, Inc.
// Available at www.BruceEckel.com.
#include "Trash.h"
using name
www.eeworm.com/read/120429/14803834
java hashtable.java
public class HashTable implements Cloneable {
private Entry[] buckets = new Entry[11];
private static class Entry {
Object key;
Object value;
Entry next;
www.eeworm.com/read/210304/15202149
java clonetest.java
/**
@version 1.10 2002-07-01
@author Cay Horstmann
*/
import java.util.*;
public class CloneTest
{
public static void main(String[] args)
{
try
{
Em