Java Lock

  Рет қаралды 46,283

Jakob Jenkov

Jakob Jenkov

Күн бұрын

Пікірлер: 113
@itsahandle
@itsahandle 7 күн бұрын
Jakob my beloved, I cannot ever thank you enough. The Java community is a better place with teachers like you in it, thank you!!
@shubhamagarwal1434
@shubhamagarwal1434 4 ай бұрын
God of Concurency..i have bene flowing you since my 2014 when you used to write blog post only...by going through your post i attend interview like a LION when they ask mutithreading qns...Thanks a Lot form 10+ yrs exp guy from BLR,India.
@JakobJenkov
@JakobJenkov 4 ай бұрын
Thanks a lot ! :-)
@amiralitavakoli1604
@amiralitavakoli1604 3 жыл бұрын
Probably the best tutorial about the Lock interface. also, I can feel semantic satiation happening for you because of the word "lock". 😁
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thanks ! ... yes, it was hard to say the word "Lock" all these times! :-D ... I remember making many mistakes during recording :-D
@LuneAgent
@LuneAgent 3 жыл бұрын
@@JakobJenkov probably it's possible to use another verb instead of "lock" to reduce this effect, maybe like: "lock and unlock the lock" -> "close and open the lock" or "occupy and unoccupy the lock" or "turn on and turn off the lock" or "capture and free the lock" I'm not really sure though, cause locking and unlocking sound the most natural for locks :)
@sreekaransrinath4315
@sreekaransrinath4315 3 жыл бұрын
Drinking game: Every time Jakob says "lock", take a shot
@JakobJenkov
@JakobJenkov 3 жыл бұрын
😊
@michaelmedvedskiy7449
@michaelmedvedskiy7449 3 жыл бұрын
got alcohol poisoning ty
@LuneAgent
@LuneAgent 3 жыл бұрын
So if a thread locks a ReentrantLock lock, a lock is locked and will not be unlocked until the lock count of the lock is 0. And before that lock unlocks it blocks the other threads until they get their own chance to lock a lock and increase its lock counter, then they get the lock unlocked and the next thread is ready to lock the lock. Wow, it locks really good.
@hero_xiper
@hero_xiper 2 жыл бұрын
Hi, Jakob. Your videos are really useful to me and thanks a lot. Please continue!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thank you very much! Glad my videos help you! I will continue, although I have less time than I did previously to make videos. But I will release some from time to time - like I just did today (about Thread Congestion in Java).
@vdiitd
@vdiitd 3 жыл бұрын
Hello Jakob, I just found your channel today while searching for Java multi-threading tutorials. Your videos are the best ones that I have come across. I just realized that this video was posted today while I was watching your playlist on multi-threading. Timely post I guess :D. Are you going to post more videos on this topic?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
How lucky 😁 Yes, I plan to still add more videos within this topic. There are several basic topics to cover, and I also want to cover various thread architectures.
@ffatheranderson
@ffatheranderson 3 жыл бұрын
Confirmed. I like the quality and detailsation of your videos and articles. Only your competitors are (I would say if you let me) Baeldung and Mkyong. 😊 PS: just realized that Baeldung is not a person 🤣...
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Baeldung started out as a single person, but then he started hiring writers.
@vdiitd
@vdiitd 3 жыл бұрын
@@JakobJenkov That's awesome. Looking forward to learn more from you! 😊
@Simon-fe7ti
@Simon-fe7ti 3 жыл бұрын
I can only second that!
@rahulgupta373
@rahulgupta373 9 ай бұрын
I watched various videos but this one was the best. Thanx for such great video. And keep spreading knowledge😁....
@JakobJenkov
@JakobJenkov 9 ай бұрын
You are welcome - and thank you for your kind words! :-)
@technophylic3321
@technophylic3321 8 ай бұрын
Brother your content is really top notch, keep doing the good work. Thanks 👍🏻
@JakobJenkov
@JakobJenkov 7 ай бұрын
Thank you ! I really appreciate your feedback! :-)
@leetcodeproblems1169
@leetcodeproblems1169 Жыл бұрын
Hi Jakob, Thnx for such a great tutorial. I wonder How do you create the diagrams which you use during the lectures?
@JakobJenkov
@JakobJenkov Жыл бұрын
I use various diagram software :-)
@aymmen6538
@aymmen6538 3 жыл бұрын
Hi Jakob, thank you for your good explanation and your efforts. Just to confirm that the two Counter implementations CounterSynchronized and CounterLock are not equivalents? In the first one, the methods inc() and getCount() can be called "simultaneously" by two threads. In the second one, the same Lock Object is used in the two methods, so they can't be called "simultaneously" by two different threads.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
No - in CounterSynchronized only 1 thread can call either inc() or getCount() at a time, because both methods are synchronized (on the object instance). That is also the case with CounterLock.
@mostafahassan6889
@mostafahassan6889 9 ай бұрын
"lock the lock" for the amazing explanation :D
@JakobJenkov
@JakobJenkov 9 ай бұрын
Yeah... then that topic is locked in 😉
@lawjibran4978
@lawjibran4978 22 күн бұрын
Checking to see if current thread is queued isn't it unnecessary since the thread will be blocked trying to get the lock. At (26 min)
@tomasma4896
@tomasma4896 3 жыл бұрын
Is that lock needed for a getter when inc is already synchronized ?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Since reading a variable doesn't change it - synchronization / locking is not necessary to guarantee correct behaviour. However, to guarantee "visibility" of the variable that is protected by the Lock - you should consider locking and unlocking when accessing it (or make the variable itself volatile).
@COFFEEWITHJAVA
@COFFEEWITHJAVA 3 жыл бұрын
I believe usually we do not apply locks to reading the variables. As per Jacob, I learnt that making writes to variables definately will require locks to perform this kind of operation and also to make it visible what changes you are making, you need to make that variable volatile. Otherwise, there is no guarantee that your changes are shown to other threads also. Hence, usually for a method like setter makes sense to have keyword like synchronized. Correct me if I am wrong, Jacob :) .
@nickfast8624
@nickfast8624 3 жыл бұрын
Are there any difference if you put lock.lock() right before try-finally block and not within try block? For example The art of multiprocessor programming suggest the approach with acquiring lock before entering try block.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
There should not really be any difference there... except if lock.lock() can throw an exception you are interested in catching somehow.
@มักโชคดี
@มักโชคดี 10 ай бұрын
Thanks Jacob.
@JakobJenkov
@JakobJenkov 9 ай бұрын
You are welcome! :-)
@kaixunzhang4702
@kaixunzhang4702 2 жыл бұрын
Hi Jakob, thanks for the wonder explanation!! However, your website is down. Can you please check?
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Hi Kaixun, thank you for notifying me! ... the server hosting tutorials.jenkov.com is getting old, and has become a bit unstable unfortunately. This is the 3rd crash within a short time period. I will be moving all the tutorials to jenkov.com soon though (a few are already moved) .
@aymmen6538
@aymmen6538 3 жыл бұрын
Another question : are there really a benefit when making the count property volatile ?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
In this case - no, there is not. The access pattern (check-then-update) means that simply using a volatile variable is not enough - you need the atomicity of a synchronized block, or a critical section guarded by a Lock. However, once you have a synchronized block or a block guarded by a Lock, you no longer need the variable to be volatile - because the synchronized block / Lock guarded block provides the same visibility guarantees as a volatile variable does.
@Felitsius
@Felitsius 2 жыл бұрын
great video!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thanks 😊
@prometheusli101
@prometheusli101 3 жыл бұрын
is java lock equivalent to kotlin await?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
I don't know Kotin well enough to be able to say, unfortunately!
@minasalah8210
@minasalah8210 3 жыл бұрын
thank you.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
You're welcome !
@redcrafterlppa303
@redcrafterlppa303 2 жыл бұрын
3:30 the lock variable needs to be static
@JakobJenkov
@JakobJenkov 2 жыл бұрын
No it should not an instance variable because it protects that single object. Otherwise it would lock all objects of that class.
@zombiestrange6475
@zombiestrange6475 Жыл бұрын
Lock lock lockalock lokulokulock
@JakobJenkov
@JakobJenkov Жыл бұрын
;-)
@jober7660
@jober7660 9 ай бұрын
I'm insanely grateful for this series, you explain everything in the best way possible!
@JakobJenkov
@JakobJenkov 9 ай бұрын
Thank you !! :-) ... and you are welcome :-)
@ffatheranderson
@ffatheranderson 3 жыл бұрын
13:25 now I know what "starvation" means in multithreading context.
@kamelwerghi6178
@kamelwerghi6178 3 жыл бұрын
keep up the great work, you deserve to have millions of subs and views 💯
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thanks :-D ... I wish ! ;-)
@raj_kundalia
@raj_kundalia Ай бұрын
This is the best tutorial ever. Thank you for doing this!
@JakobJenkov
@JakobJenkov 16 күн бұрын
Thanks! ... and you are welcome ! :-)
@bocumasix1010
@bocumasix1010 3 жыл бұрын
Hi Jakob. Your blog and videos are always helpful to me, in getting my job and performing well in it. Have you got a patreon or is there a way I can buy you a coffee? Keep up the great work
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thank you! Glad my tutorials are helpful! I did have a Patreon account once, but nobody every signed up (developers like free stuff ;-) ), so I shut it down again.
@ManishKumar-qx1kh
@ManishKumar-qx1kh 4 ай бұрын
Hi Jakob, great content as usual but i am adding a small suggestion that you should've explained about other implementations of Lock interface and how many locks are there in java etc.
@JakobJenkov
@JakobJenkov 3 ай бұрын
You can look that information up in the JavaDoc :-)
@theyaghu
@theyaghu 2 жыл бұрын
I understand what you said but still I am in confusion can you explain even better. You teaching is excellent but I am not able to understand (my fault )...!!!!!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
What part exactly is it you still need some help with?
@19891214ful
@19891214ful 5 ай бұрын
Im dizzy hearing lock 😵‍💫 Btw great video.
@JakobJenkov
@JakobJenkov 5 ай бұрын
Thanks 😅
@smitmandavia5044
@smitmandavia5044 8 ай бұрын
Thanks again for the great detailed videos! :D The best video I could find for multithreading and concurrency. One suggestion is to also explain example use case of lockInterruptible.
@CAMOBAP795
@CAMOBAP795 3 ай бұрын
This the level of explanation that looked for! Great videos!
@JakobJenkov
@JakobJenkov 3 ай бұрын
Great !! 😊😊
@tobias7256
@tobias7256 2 жыл бұрын
1:24 lock lock lock lock lock
@JakobJenkov
@JakobJenkov 2 жыл бұрын
... followed by unlock unlock unlock unlock ... in that exact sequence ;-)
@redcrafterlppa303
@redcrafterlppa303 2 жыл бұрын
4:30 interesting, i didn't know that finally was stronger than return.
@ffatheranderson
@ffatheranderson 3 жыл бұрын
22:23 good explanation on use case for try lock.
@andrehalmoussa4077
@andrehalmoussa4077 Жыл бұрын
excellent explained
@JakobJenkov
@JakobJenkov Жыл бұрын
Thank you very much 😊
@yonatanshkolsky4396
@yonatanshkolsky4396 2 жыл бұрын
Your tutorials are amazing!!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thanks :-)
@principlesoflife172
@principlesoflife172 3 жыл бұрын
Whatever expertise.. still he can learn something from you.. I am not sure how can we repay you..
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thanks - I am glad my videos are of helpful to you :-)
@utkuceylan2309
@utkuceylan2309 Жыл бұрын
Thank you Jakob for this awesome video that enlightened the topic for me!
@JakobJenkov
@JakobJenkov Жыл бұрын
You are welcome! :-)
@av98
@av98 3 жыл бұрын
Thank you for the video.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
You're welcome !!
@manojkrishna7693
@manojkrishna7693 3 жыл бұрын
Crystal clear explanation!
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thank you ! Great to hear! :-)
@김도형-g2i
@김도형-g2i 3 жыл бұрын
wow..... just wow....
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Thanks ! :-)
@abodalatrash1860
@abodalatrash1860 2 жыл бұрын
Amazing bro
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thanks :-D
@khomo12
@khomo12 2 жыл бұрын
Great!
@JakobJenkov
@JakobJenkov 2 жыл бұрын
Thanks :-)
@SebastianBandera
@SebastianBandera 3 жыл бұрын
Muy bueno !!.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
Gracias 😊
@klajdi9656
@klajdi9656 Жыл бұрын
take a shot every time it says lock
@JakobJenkov
@JakobJenkov Жыл бұрын
It better be a shot of something healthy then ;-)
@leetcodeproblems1169
@leetcodeproblems1169 Жыл бұрын
Hi Jakob, One Question when a thread acquires a lock then why it needs to acquire the lock again which is basically the ReEntrant lock?
@JakobJenkov
@JakobJenkov Жыл бұрын
It does not _have to_ - but in case your code does it - if the lock is reentrant, it will not cause any problems retaking the lock by the thread that already holds it.
@Manuel-oe4gv
@Manuel-oe4gv Жыл бұрын
Hi Jokob at minute 10:24 lock is called one time in the calculate method. How is it possible to execute add/subtract if the lock was already called without unlock ?
@JakobJenkov
@JakobJenkov Жыл бұрын
If a Lock is reentrant, a thread can lock the same lock more than once, and yet only one unlock() call is necessart to unlock it.
@BJ-xg7io
@BJ-xg7io 3 жыл бұрын
Hi Jakob, the tutorials are great, in fact I can say its the best I have found so far on multithreading. One question I have is for the tryLock() example. When thread3 is in queue and waiting for 1000ms, does it need to be next in line to be able to lock the Lock or can it be in any part of the queue and will still be able to lock the Lock if the Lock is unlocked during that 1000ms time?? From what you said in the video, I think the thread has to be next in line to be able to lock the Lock but just want to confirm if I understand it correctly.
@JakobJenkov
@JakobJenkov 3 жыл бұрын
When in doubt about a detail like this, it can be a good idea to check the official JavaDoc for the given method. There you can often find such details listed. The tryLock() method without a timeout does *not* respect other threads waiting in line to lock the ReentrantLock. The tryLock(timeout) method - the version with a timeout - *does* respect other threads waiting in line to lock the Lock. See the official JavaDoc here: docs.oracle.com/en/java/javase/14/docs/api/java.base/java/util/concurrent/locks/ReentrantLock.html#tryLock(long,java.util.concurrent.TimeUnit)
@BJ-xg7io
@BJ-xg7io 3 жыл бұрын
@@JakobJenkov Thanks so much!
@SEASLU
@SEASLU 3 жыл бұрын
Thanks for sharing Jakob. Just wonder if you've covered Condition anywhere?
@JakobJenkov
@JakobJenkov 3 жыл бұрын
What exactly do you mean by "Condition" ?
@SEASLU
@SEASLU 3 жыл бұрын
@@JakobJenkov I meant this one docs.oracle.com/javase/7/docs/api/java/util/concurrent/locks/Condition.html
Java ExecutorService - Part 1
20:56
Jakob Jenkov
Рет қаралды 54 М.
The Java Memory Model - The Basics
23:41
Jakob Jenkov
Рет қаралды 128 М.
А ВЫ ЛЮБИТЕ ШКОЛУ?? #shorts
00:20
Паша Осадчий
Рет қаралды 9 МЛН
Man Mocks Wife's Exercise Routine, Faces Embarrassment at Work #shorts
00:32
Fabiosa Best Lifehacks
Рет қаралды 5 МЛН
Шок. Никокадо Авокадо похудел на 110 кг
00:44
The day of the sea 😂 #shorts by Leisi Crazy
00:22
Leisi Crazy
Рет қаралды 1,8 МЛН
Thread Pools in Java
18:04
Jakob Jenkov
Рет қаралды 67 М.
All useEffect Mistakes Every Junior React Developer Makes
22:23
Being Competent With Coding Is More Fun
11:13
TheVimeagen
Рет қаралды 81 М.
Java Volatile
21:26
Jakob Jenkov
Рет қаралды 45 М.
Java Threads - Creating, starting and stopping threads in Java
17:14
Premature Optimization
12:39
CodeAesthetic
Рет қаралды 810 М.
Java BlockingQueue
17:48
Jakob Jenkov
Рет қаралды 40 М.
Node.js is a serious thing now… (2023)
8:18
Code With Ryan
Рет қаралды 650 М.
Лекция 8. Java.util.concurrent
1:13:39
Computer Science Center
Рет қаралды 23 М.
Java ThreadLocal
14:36
Jakob Jenkov
Рет қаралды 36 М.
А ВЫ ЛЮБИТЕ ШКОЛУ?? #shorts
00:20
Паша Осадчий
Рет қаралды 9 МЛН