此处所列的文章均是我自己从国外的网站摘抄并翻译的,由于英文水平有限,里面肯定有不少错漏.翻译这些东西没有其他的什么用途,只是提高自己的英语阅读能力和编程技术水平而已     
摘要: function XXXReverseString(const AText: string): string;var S, D: Pchar; i: Integer;Begin S := Pchar(AText); SetLength(Result, Length(AText)); D := Pchar(Result); for i := Length(AText) - 1 downto 0 do... 阅读全文
posted @ 2010-11-07 16:55 AppleAndPear 阅读(160) 评论(0) 推荐(0) 编辑
摘要: procedure Move( const Source; var Dest; count : Integer );{$IFDEF PUREPASCAL}var S, D: PChar; I: Integer;begin S := PChar(@Source); D := PChar(@Dest); if S = D then Exit; if Cardinal(D) > Cardinal(... 阅读全文
posted @ 2010-11-05 08:48 AppleAndPear 阅读(195) 评论(0) 推荐(0) 编辑
摘要: http://www.codexterity.com/http://www.drbob42.com/delphi7/index.htm 阅读全文
posted @ 2010-11-03 22:16 AppleAndPear 阅读(148) 评论(0) 推荐(0) 编辑
摘要: http://www.codexterity.com/delphistrings.htmA Brief History of StringsDelphi strings in depthStrings are a bit of a mystery to most Delphi developers. The fact that new features are added in almost ev... 阅读全文
posted @ 2010-11-03 09:35 AppleAndPear 阅读(283) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (I) IntroductionBy Ernesto De Spirito <edspirito@latiumsoftware.com>This article simply intends to introduce you to the world of inline assembler in Delphi. It will ba... 阅读全文
posted @ 2010-11-02 14:09 AppleAndPear 阅读(632) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (II) ANSI stringsBy Ernesto De Spirito <edspirito@latiumsoftware.com>In this chapter we will learn a few more assembler instructions, and the basics of working with AN... 阅读全文
posted @ 2010-11-02 14:07 AppleAndPear 阅读(488) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (VI) Calling external proceduresBy Ernesto De Spirito <edspirito@latiumsoftware.com>API functions and the Stdcall calling conventionAPI functions are called transparen... 阅读全文
posted @ 2010-11-02 09:01 AppleAndPear 阅读(555) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (V) An Introdunction to ObjectsBy Ernesto De Spirito <edspirito@latiumsoftware.com>Objects are recordsFrom the assembler point of view, an object is like a record, who... 阅读全文
posted @ 2010-11-02 08:59 AppleAndPear 阅读(770) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (III) Static ArraysBy Ernesto De Spirito <edspirito@latiumsoftware.com>Passing static arrays as parametersStatic arrays parameters are passed as pointers to the first ... 阅读全文
posted @ 2010-11-02 08:54 AppleAndPear 阅读(525) 评论(0) 推荐(0) 编辑
摘要: Inline Assembler in Delphi (IV) RecordsBy Ernesto De Spirito <edspirito@latiumsoftware.com>Passing records as parametersLike static arrays, records are internally passed as pointers to the data,... 阅读全文
posted @ 2010-11-02 08:53 AppleAndPear 阅读(650) 评论(0) 推荐(0) 编辑