代码搜索:clone
找到约 4,459 项符合「clone」的源代码
代码结果 4,459
www.eeworm.com/read/162314/10315027
cpp main.cpp
//main.cpp
#include "Prototype.h"
#include
using namespace std;
int main(int argc,char* argv[])
{
Prototype* p = new ConcretePrototype();
Prototype* p1 = p->Clone();
return 0
www.eeworm.com/read/161658/10388483
cpp tzobject.cpp
// tzObject.cpp: implementation of the tzObject class.
//
//////////////////////////////////////////////////////////////////////
#include
#include "stdafx.h"
#include "tzObject.h"
//
www.eeworm.com/read/160819/10496099
cpp bouncer.cpp
#include
#include "canvas.h"
#include "auxil.h"
#include
using namespace std;
class BounceAround : public Bouncer
{
public:
BounceAround(Shape& cs, double angle,
www.eeworm.com/read/160819/10496544
cpp bouncefollow.cpp
#include
#include "canvas.h"
#include "auxil.h"
#include
using namespace std;
class Follower : public Mouseable, public Bouncer
{
public:
Follower(Shape& s, d
www.eeworm.com/read/278321/10547785
cpp tinyxml.cpp
/*
Copyright (c) 2000 Lee Thomason (www.grinninglizard.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages a
www.eeworm.com/read/352061/10584429
cpp prototype.cpp
//Prototype.cpp
#include "Prototype.h"
#include
using namespace std;
Prototype::Prototype()
{
}
Prototype::~Prototype()
{
}
Prototype* Prototype::Clone() const
{
return
www.eeworm.com/read/352061/10584436
cpp main.cpp
//main.cpp
#include "Prototype.h"
#include
using namespace std;
int main(int argc,char* argv[])
{
Prototype* p = new ConcretePrototype();
Prototype* p1 = p->Clone();
return 0
www.eeworm.com/read/278011/10584902
txt 好文--jive 中的设计模式 (转自ibm developerworks).txt
作者:jeru
email: jeru@163.net
日期:7/13/2001 5:48:02 PM
Jive 中的设计模式
(Design Pattern)
马旋
2001年 5月
摘要:Jive 是一个开放源码的论坛项目, 也就是我们所常见的 BBS, 采用了 SUN 公司的 JSP 技术, 相比起 j2ee 这个庞大的体系结构, 其整个
www.eeworm.com/read/159878/10598949
pas batchupdatesu1.pas
unit BatchUpdatesU1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, DBGrids, ExtCtrls, DB, ADODB, StdCtrls;
type
TForm1 = c
www.eeworm.com/read/351822/10605761
java swiminfo.java
import java.awt.*;
import java.awt.event.*;
public class SwimInfo extends Frame
implements ActionListener
{
SwimData sdata, sxdata = null;
List swList, cloneList;
Button Clone, Re