[Java] ReentrantLock 공식문서 파헤쳐보기

·
Dev Lang/JAVA
ReentrantLock공식문서를 보고 학습한 내용을 아카이브해보았습니다.공식문서 링크: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/locks/ReentrantLock.html#isHeldByCurrentThread-- ReentrantLock (Java Platform SE 8 )Acquires the lock only if it is not held by another thread at the time of invocation. Acquires the lock if it is not held by another thread and returns immediately with the value true, setting the lock..