此处所列的文章均是我自己从国外的网站摘抄并翻译的,由于英文水平有限,里面肯定有不少错漏.翻译这些东西没有其他的什么用途,只是提高自己的英语阅读能力和编程技术水平而已     

随笔分类 -  BASM Delphi

摘要:Delphi 开发指南 —— 编码标准文档版权所有 ?1998 Xavier Pacheco 及 Steve Teixeira翻译 2000 李颖(e.w@263.net)目录 1.导言 2.一般源代码格式规范 缩进 页宽 Begin..End 对 3.Object Pascal 语言 3.1括号 3.2保留字和关键字 3.3过程和函数 (子程序) 3.4变量 3.5语句 if 语句 case 语句 while 语句 for 语句 repeat 语句 with 语句 3.6结构化的意外处理 概要 try..finally 的使用 try..except 的使用 try. 阅读全文
posted @ 2011-02-20 15:51 AppleAndPear 阅读(1974) 评论(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 阅读(636) 评论(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 阅读(653) 评论(0) 推荐(0) 编辑