Pascal 程序结构
-
程序结构
在研究Pascal编程语言的基本构建块之前,让我们看一下最低限度的Pascal程序结构,以便在以后的章节中作为参考。Pascal程序基本上由以下部分组成-- 程序名称
- 使用命令
- 类型声明
- 常量声明
- 变量声明
- 函数声明
- 程序声明
- 主程序块
- 每个块中的语句和表达式
- 注释
每个pascal程序通常严格按照该顺序具有标题语句,声明和执行部分。以下格式显示了Pascal程序的基本语法-program {name of the program} uses {comma delimited names of libraries you use} const {global constant declaration block} var {global variable declaration block} function {function declarations, if any} { local variables } begin ... end; procedure { procedure declarations, if any} { local variables } begin ... end; begin { main program block starts} ... end. { the end of main program block }
-
Pascal Hello World示例
以下是一个简单的Pascal代码,该代码将显示单词“Hello,World!”。-
尝试一下program HelloWorld; uses crt; (* 主程序块开始 *) begin writeln('Hello, World!'); readkey; end.
这将产生以下结果-Hello, World!
让我们看一下上面程序的各个部分-- 该程序的第一行
program HelloWorld;
指示程序的名称。 - 该程序的第二行
uses crt;
是一个预处理程序命令,它告诉编译器在进行实际编译之前先包括crt单元。 begin
和end
语句中的下几行是主程序块。Pascal中的每个块都包含在begin语句和end语句中。但是,表示主程序结束的end语句后跟一个点(.),而不是分号(;)。- 主程序块的
begin
语句是程序开始执行的地方。 (*...*)
将被编译器忽略,它已经添加注释。- 语句
writeln('Hello,World!');
使用Pascal中可用的writeln函数,该函数会导致出现消息“ Hello,World!”。在屏幕上显示。 - 语句
readkey;
允许显示暂停,直到用户按下一个键。它是crt单元的一部分。单元就等于是Pascal中的库。 - 最后一条语句
end.
结束程序。
- 该程序的第一行
-
编译并执行Pascal程序
打开一个文本编辑器并添加上述代码。- 将文件另存为hello.pas
- 打开命令提示符,然后转到保存文件的目录。
- 在命令提示符下键入fpc hello.pas,然后按Enter编译代码。
- 如果代码中没有错误,命令提示符将带您进入下一行,并将生成hello可执行文件和hello.o目标文件。
- 现在,在命令提示符下键入hello以执行您的程序。
- 您将可以在屏幕上看到打印的“Hello World”,程序将等到您按任意键。
$ fpc hello.pas Free Pascal Compiler version 2.6.0 [2011/12/23] for x86_64 Copyright (c) 1993-2011 by Florian Klaempfl and others Target OS: Linux for x86-64 Compiling hello.pas Linking hello 8 lines compiled, 0.1 sec $ ./hello Hello, World!
确保free pascal编译器fpc在环境变量PATH中,并且正在包含源文件hello.pas的目录中运行它。