代码搜索:clone

找到约 4,459 项符合「clone」的源代码

代码结果 4,459
www.eeworm.com/read/138758/13216592

java checkcloneable.java

//: appendixa:CheckCloneable.java // Checking to see if a reference can be cloned. // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.
www.eeworm.com/read/138758/13216598

java deepcopy.java

//: appendixa:DeepCopy.java // Cloning a composed object. // {Depends: junit.jar} // From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002 // www.BruceEckel.com. See copyright notice in CopyRight.
www.eeworm.com/read/138595/13229836

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/138383/13238524

cpp dfaminhash.cpp

#include #include #include #include #include #include using namespace std; int main(int argc, char** argv) { config c(argc, argv, 1);
www.eeworm.com/read/138383/13238538

cpp not.cpp

#include #include #include #include #include #include template int run(DFA &A, config &c) { A.initial(clone(A, clo
www.eeworm.com/read/138383/13238544

cpp dfamin.cpp

#include #include #include #include #include #include using namespace std; int main(int argc, char** argv) { config c(argc, argv, 1);
www.eeworm.com/read/138383/13238550

cpp reverse.cpp

#include #include #include #include #include #include #include #include #include #include u
www.eeworm.com/read/324119/13284350

cpp symboltable.cpp

/* * * * */ #include "symboltable.h" #include "exception.h" using namespace std; // // // Item *SymbolTable::Retrieve(string s) { Item *p; for (p=First();p!=NULL;p=p->next) if (p->GetName(
www.eeworm.com/read/324119/13284482

cpp stack.cpp

/* * * * */ #include #include #include "stack.h" #include "exception.h" using namespace std; // // // Stack::Stack() { displaymode = DM_DEC; } // // // void Stack::Drop()
www.eeworm.com/read/238749/13326931

cpp prototype.cpp

//Prototype.cpp #include "Prototype.h" #include using namespace std; Prototype::Prototype() { } Prototype::~Prototype() { } Prototype* Prototype::Clone() const { return