func `try`() -> Bool
Attempts to acquire a lock and immediately returns a Boolean value that indicates whether the attempt was successful.
ロックを獲得することを試みます、そしてその試みが成功したかどうかを指し示すブール値を直ちに返します。
Availability 有効性
Technology
limit
The time limit for attempting to acquire a lock. あるロックを獲得する試みの制限時間。
true
if the lock is acquired before limit
, otherwise false
.
true
、もしそのロックがlimit
の前に獲得されるならば、そうでなければfalse
。
The thread is blocked until the receiver acquires the lock or limit
is reached.
スレッドは、レシーバがロックを獲得するまでまたはlimit
に達するまでブロックされます。
func `try`() -> Bool