代码搜索:Create

找到约 10,000 项符合「Create」的源代码

代码结果 10,000
www.eeworm.com/read/285264/8857491

pas factorymethodunit3.pas

unit FactoryMethodUnit3; interface type TProduct = class public constructor Create; virtual; destructor Destroy; override; end; TMyProduct = class(TProduct) public
www.eeworm.com/read/285264/8857494

pas factorymethodunit1.pas

unit FactoryMethodUnit1; interface type TProductID = (MINE, YOURS, theirs); TProduct = class public constructor Create; virtual; end; TMyProduct = class(TProduct) construc
www.eeworm.com/read/285264/8857508

pas factorymethodunit2.pas

unit FactoryMethodUnit2; interface type TProduct = class public constructor Create; virtual; end; TCreator = class public constructor Create; virtual; function GetP
www.eeworm.com/read/285264/8857520

pas commandunit1.pas

unit CommandUnit1; interface uses forms, classes; type TDocument = class; TMyApplication = class(TApplication) public procedure Add(doc: TDocument); end; TCommand = clas
www.eeworm.com/read/285264/8857529

pas iteratorunit2.pas

unit IteratorUnit2; interface uses Dialogs; type TIterator = class; TItem = class constructor Create; destructor Destroy; virtual; end; TAbstractList = class pu
www.eeworm.com/read/285264/8857586

pas flyweightunit1.pas

unit Flyweightunit1; interface uses Forms, graphics; const NCHARCODES = 128; type TGlyphContext = class; TBTree = class; TGlyPh = class protected constructor Crea
www.eeworm.com/read/285264/8857588

pas fmunit1.pas

unit fmUnit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type TfmDoc = class(TForm) Memo1: TMemo; procedure Memo1Cha
www.eeworm.com/read/285264/8857629

pas adapterunit1.pas

unit AdapterUnit1; interface uses Windows; type TManipulator = class public constructor Create; virtual; end; TShape = class public constructor Create; virtual; pr
www.eeworm.com/read/187086/8857845

dsk project1.dsk

[Closed Files] File_0=SourceModule,'C:\Documents and Settings\yangjun\桌面\VCD租赁管理__源码\vcd\long.pas',0,1,197,25,199,1,0 File_1=SourceModule,'C:\Documents and Settings\yangjun\桌面\VCD租赁管理__源码\vcd\main.p
www.eeworm.com/read/384583/8857882

cpp main.cpp

//编写者:06093101 01 陈宇 //编写时间:2008-10-07,19:30 //修改时间:2008-10-08,21:30 //实验内容:单链表的创建与其原地逆置 #include #include"myhead.h" int main() { int a[]={1,23,45,678}; //输入一个数组 node