代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/371987/9526299
java not.java
public class Not extends Expression {
private Expression op;
public Not(Expression f) {
op = (Expression)f.clone();
}
public int eval() {
return ((op.eval()==1)?0:1);
www.eeworm.com/read/371987/9526316
java and.java
public class And extends Expression {
private Expression firstOp, secondOp;
public And(Expression f, Expression s) {
firstOp = (Expression)f.clone();
secondOp = (Expression)s.clo
www.eeworm.com/read/371987/9526348
java or.java
public class Or extends Expression {
private Expression firstOp, secondOp;
public Or(Expression f, Expression s) {
firstOp = (Expression)f.clone();
secondOp = (Expression)s.clone
www.eeworm.com/read/169556/9852389
java clonetest.java
/**
@version 1.00 2000-04-13
@author Cay Horstmann
*/
import java.util.*;
public class CloneTest
{
public static void main(String[] args)
{
Employee original = new E
www.eeworm.com/read/163899/10140616
txt readme.txt
This is an Asteroids clone that show exactly what you can do
with the sprite engine. In particular is shows how to use the
TDGCThruster object.
www.eeworm.com/read/281000/10273504
cpp fig04_28.cpp
/**
* Deep copy.
*/
const BinarySearchTree & operator=( const BinarySearchTree & rhs )
{
if( this != &rhs )
{
makeEmpty( );
root =
www.eeworm.com/read/355030/10299852
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 namespa
www.eeworm.com/read/277973/10590106
c ndishack.c
// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil -*- (for GNU Emacs)
//
// (c) Microsoft Corporation. All rights reserved.
//
// This file is part of the Microsoft Virtual Ring Routing distr
www.eeworm.com/read/417725/10979116
cs dxfdata.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace DXFFile
{
public enum ArcType
{
atCircle,
www.eeworm.com/read/417725/10979198
cs dxfdata.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace SunDXFDll
{
public class DXFData : ICloneable
{
//