Pascal - 程序结构
在我们学习 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; (* Here the main program block starts *) 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!
确保免费的 pascal 编译器 fpc 在您的路径中,并且您正在包含源文件 hello.pas 的目录中运行它。