Difference between revisions of "Begin/zh CN"

From Free Pascal wiki
Jump to navigationJump to search
(+ categories)
Line 29: Line 29:
  
 
{{Keywords}}
 
{{Keywords}}
 
 
{{AutoCategory}}
 
[[category:Pascal/zh_CN]]
 
[[Category:Control Structures/zh_CN]]
 

Revision as of 20:31, 16 October 2015

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

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

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

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

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

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

一个begin 必须对应一个end


Keywords: begindoelseendforifrepeatthenuntilwhile