Difference between revisions of "While/ja"
< While
Jump to navigation
Jump to search
Coffee Mills (talk | contribs) (New page: {{Multi-lang}} {{LSL_Conditional/ja |statement=while |statement_header |statement_desc=どちらの文も空文でもよい. |statement_end=loop |statement_end_desc=Can be either a single ...) |
m |
||
(7 intermediate revisions by 4 users not shown) | |||
Line 3: | Line 3: | ||
|statement=while | |statement=while | ||
|statement_header | |statement_header | ||
|statement_desc= | |statement_desc=いずれのステートメントが空でも可能です。 | ||
|statement_end=loop | |statement_end=loop | ||
|statement_end_desc= | |statement_end_desc=シングルステートメントでもブロックステートメントでも空のステートメントのいずれも可能です。 | ||
|p1_name=condition|p1_desc= | |p1_name=condition|p1_desc=これが実行されてtrueであれば '''loop''' が実行されます。 | ||
|constants | |constants | ||
|spec | |spec | ||
|caveats | |caveats | ||
|examples=<pre>// | |examples=<pre>//シングルステートメント | ||
integer a = 0; | integer a = 0; | ||
integer b = 10; | integer b = 10; | ||
Line 16: | Line 16: | ||
llOwnerSay((string)(a++)); | llOwnerSay((string)(a++)); | ||
</pre> | </pre> | ||
<pre>// | <pre>//ブロックステートメント | ||
integer a = 0; | integer a = 0; | ||
integer b = 10; | integer b = 10; | ||
Line 25: | Line 25: | ||
} | } | ||
</pre> | </pre> | ||
<pre>// | <pre>//空のステートメント | ||
integer a = 0; | integer a = 0; | ||
integer b = 10; | integer b = 10; | ||
Line 34: | Line 34: | ||
|also_functions | |also_functions | ||
|also_tests | |also_tests | ||
|also_articles | |also_articles= | ||
{{LSL Tip|[[User:Kireji_Haiku/How_to_deal_with_lists_in_LSL|LSLでリストを繰り返し処理する方法についての紹介]]}} | |||
|also_footer | |also_footer | ||
|notes= | |notes={{LSLG|do-while/ja|do-while}} のループは while ループや {{LSLG|for/ja|for}} ループより LSO においては速いです。 | ||
|mode | |mode | ||
|deprecated | |deprecated | ||
|cat1=Conditional | |cat1=Conditional | ||
|cat2 | |cat2=Flow Control | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Latest revision as of 07:52, 26 September 2023
LSL ポータル | 関数 | イベント | 型 | 演算子 | 定数 | 実行制御 | スクリプトライブラリ | カテゴリ別スクリプトライブラリ | チュートリアル |
while( condition ) loop
• | condition | – | これが実行されてtrueであれば loop が実行されます。 | |
• | loop | – | シングルステートメントでもブロックステートメントでも空のステートメントのいずれも可能です。 |
いずれのステートメントが空でも可能です。
詳細
例
//シングルステートメント integer a = 0; integer b = 10; while(a < b) llOwnerSay((string)(a++));
//ブロックステートメント integer a = 0; integer b = 10; while(a < b) { llOwnerSay((string)a); ++a; }
//空のステートメント integer a = 0; integer b = 10; while(a++ < b);
関連項目