Delphi XE5教程4:程序和单元概述

内容源自Delphi XE5 UPDATE 2官方帮助《Delphi Reference》,本人水平有限,欢迎各位高人修正相关错误!也欢迎各位加入到Delphi学习资料汉化中来,有兴趣者可QQ:34484690@qq.com

Programs and Units

第二章 程序和单元

This topic covers the overall structure of a Delphi application: the program header, unit declaration syntax, and the uses clause.

本主题涵盖了Delphi应用程序的整体结构:程序头,单元声明语法,以及uses子句。

  • Divide      large programs into modules that can be edited separately.

把一个大的程序分成多个模块,它们可单独进行编辑。

  • Create      libraries that you can share among programs.

创建可以在程序间共享的库。

  • Distribute      libraries to other developers without making the source code available.

不必提供源代码就可以向其它开发者分发共享库。

原文地址:https://www.cnblogs.com/taukinfo/p/3549199.html