历览千载书,时时见遗烈。这篇文章主要讲述Delphi10.2 VCL Forms Application 的构成相关的知识,希望能为你提供帮助。
Delphi10.2 项目的构成(File Extensions of Files Generated by RAD Studio)
Step1、打开 Delphi10.2,选择【File | New | VCL Forms Application - Delphi】,创建一个 Delphi 应用程序;
文章图片
Step2、选择【File | Save All】,将我们的默认Delphi程序保存到一个独立的文件夹(例如 F:\\Delphi10.2\\First)中;
文章图片
Step3、在 Project Manager 中的 Build Configurations 和 Target Platforms 选项中分别选择 32位 Debug、32 位 Release、64位 Debug和64位 Release组合,并按【F9】运行我们的程序;
文章图片
Step4、接下来打开Windows资源管理器,打开刚刚保存的文件夹看看,如下图:
文章图片
并且 Win32(Win64) 的 Debug(Release) 目录下文件如下:
文章图片
【Delphi10.2 VCL Forms Application 的构成】下面结合 Delphi10.2 的帮助文件说明下每个文件的具体意义:
- 【Project1.dpr】Delphi project source; when compiled, produces .exe, .dll, or .ocx file.
- 【Project1.dproj】Delphi project file created by the IDE. Contains the current settings for project options, such as compiler and linker settings, directories, conditional directives, and command-line parameters. Set these options using Project > Options. This file is not used when compiling a project from the command line using the command line compiler.
- 【Project1.dproj.local】User-specific project options.
- 【Project1.identcache】Information used for refactoring.
- 【Project1.res】Compiled and uncompiled resource files.
- 【Unit1.dfm】A Windows VCL form file.
- 【Unit1.pas】Delphi source file.
- 【_history 文件夹】 There are now three versions of the file stored in the current directory in a hidden directory named __history.
- 【_recovery 文件夹】 When Tools >
Options >
Environment Options >
AutoRecover is enabled, RAD Studio saves the recovery files in the hidden folder called
_recovery
, in the folder of your project. - 【Win32 文件夹 】Output folder, 32-bit Windows platform
- 【Win64 文件夹】 Output folder, 64-bit Windows platform
- 【Project1.exe】 应用程序
- 【Unit1.dcu】Delphi compiled unit file.
推荐阅读
- APP案例分析——嘀嗒番茄钟
- html5页面与android页面之间通过url传递参数
- Hadoop 2:Mapper和Reduce
- Android开发之数据库SQL
- APP案例分析之华为浏览器
- C# webApi----H5_app后台制作--参数的传输(对于懒得安分webApi参数传输不行的补充)
- 第二次作业 APP分析
- 基于jeesite+android开发 电子商务系统免费教程
- 什么情况下用+运算符进行字符串连接比调用StringBuffer/StringBuilder对象的append方法连接字符串性能更好()