上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: http://docwiki.embarcadero.com/RADStudio/XE7/en/Delphi_Data_Types 阅读全文
posted @ 2015-03-27 16:23 云水浮萍 阅读(134) 评论(0) 推荐(0) 编辑
摘要: type PGUID = ^TGUID; TGUID = packed record D1: LongWord; D2: Word; D3: Word; D4: array[0..7] of Byte; class operator Equal(const Left... 阅读全文
posted @ 2015-03-27 14:52 云水浮萍 阅读(213) 评论(0) 推荐(0) 编辑
摘要: procedure TForm2.Button1Click(Sender: TObject); function test(value:boolean):boolean; begin result:=value end;begin if (1=2) and test(false) then show... 阅读全文
posted @ 2015-02-28 20:55 云水浮萍 阅读(163) 评论(0) 推荐(0) 编辑
摘要: procedure PrintList(const BeginPointer,EndPointer:PDWORD);var I:Byte; dBegin,dEnd:DWORD;begin dBegin:=PDWORD(BeginPointer)^; dEnd:=PDWORD(EndPointer)^... 阅读全文
posted @ 2015-02-09 13:51 云水浮萍 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 《代码大全》 在读第二版电子本,听说出了第三版,等读完就去买一本三版,只是自己英语太烂,要不真希望能读原版,好多翻译让我理解不了《设计模式》《天书夜读》《数据结构》 阅读全文
posted @ 2015-02-03 21:40 云水浮萍 阅读(139) 评论(0) 推荐(0) 编辑
摘要: //1var MainWindow: TMainWindow;begin Application.Initialize; Application.MainFormOnTaskbar := True; Application.CreateForm(TMainWindow, MainWindow); A... 阅读全文
posted @ 2015-01-17 17:58 云水浮萍 阅读(176) 评论(0) 推荐(0) 编辑
摘要: type TActionComponent = class(TObject) public procedure Execute;virtual; end; TStuckPig = class(TActionComponent) public procedure Execut... 阅读全文
posted @ 2015-01-16 17:34 云水浮萍 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 好久没写代码了,更久没上博客园的博客了,无聊写几行试一下新语法。 1 unit Main; 2 3 interface 4 5 uses 6 Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, Sy... 阅读全文
posted @ 2014-12-20 21:58 云水浮萍 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: 桂林市距猫儿山(高寨)81公里,兴安县城至猫儿山(高寨)56公里。 路线一: 1.从桂林北站(北极广场)出发先到兴安县城;10:30有一辆车到猫儿山。桂林总站6:30-21:00,每20分钟发一次车到兴安。2.从兴安县城坐直达车到猫儿山(高寨)。时间分别有:9:30,13:10,15:10,16:10,6元一张车票。灵渠:坐三轮车到灵渠公园2元,灵渠公园的门票10元一张;乐满地:坐三轮车,3元;猫... 阅读全文
posted @ 2008-07-30 01:27 云水浮萍 阅读(525) 评论(0) 推荐(0) 编辑
摘要: 我一直以为,不同语言决定函数的调用约定,比如,C++使用cdecl,Delphi使用register,因为在查看Delphi帮助<Calling conventions>时,以及经常看到"各种语言中调用子程序的约定是不同的"这样的话,就武断的认为调用约定由语言决定,而API和DLL导出函数都是Stdcall约定。这就是我的错误。现在,我认为约定是具体函数决定的。就如同DLL导出函数我们... 阅读全文
posted @ 2007-05-08 10:06 云水浮萍 阅读(618) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页