代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/271450/10993975
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/470729/6907020
cpp render_inline.cpp
/*
* This file is part of the render object implementation for KHTML.
*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 1999 Antti Koivisto (koivisto@kde.org)
* Copyright (C)
www.eeworm.com/read/466324/7032608
java exercise9_4.java
// TestCloneable.java: Use the TestCloneable interface
// to enable cloning
public class Exercise9_4 {
/** Main method */
public static void main(String[] args) {
House house1 = new House
www.eeworm.com/read/456187/7355343
java exercise9_4.java
// TestCloneable.java: Use the TestCloneable interface
// to enable cloning
public class Exercise9_4 {
/** Main method */
public static void main(String[] args) {
House house1 = new House
www.eeworm.com/read/443686/7628382
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/434104/7888532
cpp capture.cpp
/**************************************************************************
AVStream Simulated Hardware Sample
Copyright (c) 2001, Microsoft Corporation.
File:
capture.
www.eeworm.com/read/196362/8097727
java stringtest.java
class StringTest
{
public static void main(String[] args) //args 接受命令行参数
{
//System.out.println(args[0]);
Professor p = new Professor("wangwu",50)
www.eeworm.com/read/145545/12715340
java intarray.java
package examples.cloning;
/** An example class used to demonstrate proper cloning
* concepts
*/
public class IntArray implements Cloneable {
private int[] a;
/** Class constructo
www.eeworm.com/read/145545/12715347
java pair.java
package examples.cloning;
/** An example class used to demonstrate how to
* enable cloning for a class without fields that
* contain object references..
*/
public class Pair implements Cl
www.eeworm.com/read/316370/13524064
cs atmform.cs
// ATM.cs created with MonoDevelop
// User: Estelle at 1:51 PM 5/5/2008
//
// To change standard headers go to Edit->Preferences->Coding->Standard Headers
//
using System;
using System.Reflection;
us