Apex Do-While ループの使い方のサンプル

環境
Salesforce

構文
do {
code_block
} while (condition)

Apex do-while ループは、最初のループが実行されるまで、Boolean 条件ステートメントをチェックしません。
そのため、コードブロックは必ず少なくとも 1 回は実行されます。

サンプルコード
1 から 11 の数値をデバッグログに出力します。

Integer count = 1;

do {
    System.debug(count);
    count++;
} while (count < 12);

 

Apex

Posted by arkgame