for反復処理【Cycle operator for】

Expression1 describes the cycle initialization. Expression2 is the conditional test for the cycle termination. If it is true, the loop body for operator will be executed. The cycle repeats until Expression2 becomes false. If it is false, the cycle will be terminated, and the control will be given to the next operator. Expression3 is calculated after each iteration.

Expression1 は反復の初期値、Expression2 は反復を終了する為の条件判定です。もし、それが true の場合、ループ本体 for の処理が実行されます。Expression2 が false になるまで反復が繰り返されます。もし、それが false の場合、反復は終了します。そして、コントロールは次の処理に与えられます。Expression3 は毎回の反復処理後に計算されます。

 

The for operator is equivalent to the following succession of operators:

for 処理は以下の連続処理に相当します。

 

Any of the three or all three expressions can be absent in the for operator, but the semicolons (;) that separate them must not be omitted. If Expression2 is omitted, it is considered constantly true. The for (;;) operator is a continuous cycle equivalent to the while(1) operator. Either expression 1 or 3 can consist of several expressions combined by a comma operator ‘,’.

3つ、または、すべての3つの式のいずれかが for 処理で欠如することができる。しかし、それら3つを分けるセミコロン(;)は必須です。もし、Expression2 を省略した場合は、常に ture と見なされます。for(;;) 処理は、while(1) 処理と同じ連続反復です。Expression1 または 3 は、コンマ(,)演算子によって結合されたいくつかの式から成り立つことができます。

Examples:

例:

 

Leave a Reply

Your email address will not be published. Required fields are marked *

CAPTCHA


You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code class="" title="" data-url=""> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong> <pre class="" title="" data-url=""> <span class="" title="" data-url="">