|
Any expression followed by a semicolon (;) is an operator. Here are some
examples of expression operators:
さまざまな式の後ろに続くセミコロン(;) までが処理です。式の処理の例を次に示します。
Assignment operator:
代入処理:
Identifier=expression;
x=3;
y=x=3; // error
Assignment operator can be used in an expression only once.
代入処理は式で1回だけ使用できます。
Function call operator:
関数呼び出し処理:
Function_name(argument1,..., argumentN);
FileClose(file);
Empty operator
空の処理:
It consists of a semicolon (;) only and used to denote a null body of a
control operator.
それはセミコロン(;) だけから構成され、コントロール処理の本体が無いことを意味するために使用されます。
|