Threads[Wait] - スレッドの待機
使い方
Wait(id1, id2, ...)
パラメータ
id1, id2,... - (整数) スレッド識別子
|
説明
|
|
•
|
Wait コマンドはある条件が満たされるまで待機させます。
|
|
|
例
|
|
>
|
id := Threads:-Create( int( sin(x)^x, x ), d );
|
>
|
Threads:-Wait( id );
print( d );
|
>
|
id1 := Threads:-Create( int( (1/x)^x, x ), d1 );
|
>
|
id2 := Threads:-Create( int( x^x, x ), d2 );
|
>
|
Threads:-Wait( id1, id2 );
print( d1, d2 );
|
/ /
| x | x
| (1/x) dx, | x dx
| |
/ /
| |
|
|
Download Help Document
Was this information helpful?