Begin/zh CN

From Free Pascal wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Deutsch (de) English (en) español (es) suomi (fi) français (fr) русский (ru) 中文(中国大陆)‎ (zh_CN)

关键字 keyword begin 用于标明函数对象属性过程程序属性等的开始, 也可以用于程序块的开始。

对于一个函数,方法(method)、过程(procedure)、程序(program)、属性(property),它总是用于consttype以及var之后,在第一个可执行语句之前。它必须伴随end同时出现:

  program Project1;
  var (..);
  begin
    (..);
  end.

对于块标记,此关键字用于开头,同样也必须标明结束:

  if (..) then
    begin
      (..)
    end
  else
    begin
      (..)
    end;

一个begin 必须对应一个end


Keywords: begindoelseendforifrepeatthenuntilwhile