Core Java with OCJP/SCJP: Multi Threading Part-4 || Thread Priorities

  Рет қаралды 319,163

Durga Software Solutions

Durga Software Solutions

Күн бұрын

Пікірлер: 211
@roopakamath9273
@roopakamath9273 7 жыл бұрын
Never ever understood the concepts of multithreading the way you taught.Thank you so much Sir for these online videos.beautifully explained.
@84198586
@84198586 7 жыл бұрын
I love durga sir English.. its very simple and feels like he is speaking in hindi only.. love you sir..
@chilipeppero
@chilipeppero 7 жыл бұрын
One of the best online teachers i've ever found ... greetings from Peru
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 7 жыл бұрын
Thank you very much for your feedback
@sudhiryadav589
@sudhiryadav589 7 жыл бұрын
i herd more about DurgaSoft bt when I see the tutorial of multi threading then i believe how u teach java in easy way nd how any student can learn java easly. Awsome explainatin Sir
@mahimagupta8763
@mahimagupta8763 4 жыл бұрын
Thank you so muchhh sir for the explanation about multithreads .....I finally understood these concepts.....one of the best Java teacher I have ever found...
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Mahima. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@rajatgoyal7817
@rajatgoyal7817 4 жыл бұрын
You are the best teacher sir, every teacher must learn from you the way you explain all the things and discuss the tricky question . Thank you so much for you help : )
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Rajat. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@utsavmodh9698
@utsavmodh9698 8 ай бұрын
Durga sir is the Hero of Java Cinema🎉
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 8 ай бұрын
Hello Utsav. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@akashkala9299
@akashkala9299 3 жыл бұрын
Sir, You are the "Rajnikant" of Java language. :)))
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 3 жыл бұрын
Hello Akash. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@kundansingh3853
@kundansingh3853 3 жыл бұрын
Thread Constant are as follows: public static final int MIN_PRIORITY = 1; public static final int NORM_PRIORITY = 5; public static final int MAX_PRIORITY = 10;
@AmitKumar-mo8je
@AmitKumar-mo8je 6 жыл бұрын
First of all, a big thank you sir for this amazing covering of java lectures. The way of explanation is simple, understandable and very clear. Even a novice can get excellence in java by your lectures. One request is pls, upload the 3rd lecture of multithreading. After viewing your videos we can not go through others. So, pls, sir upload this lecture.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Amit. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. For 3rd lecture of Multithreading Video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@VishalSharma-rn7mt
@VishalSharma-rn7mt 4 жыл бұрын
You are the greatest teacher sir, your explanation is wonderful, even paid course don't provide like this explanation.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Vishal. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@archanaasathyanarayanan6959
@archanaasathyanarayanan6959 7 жыл бұрын
One interesting observation I discovered. As Sir explained, child thread always gets its priority from its parent thread as we know. But fact is that the child thread gets its priority based on the priority of the parent thread at the time of creation of that child thread. If the priority of the parent thread is set after the child thread is created, it does not impact the child thread. Example: Code: public class ThreadDemo { static public void main(String[] args) { System.out.println("Main thread priority old: "+Thread.currentThread().getPriority()); MyThread t = new MyThread(); Thread.currentThread().setPriority(8); System.out.println("Main thread priority new: "+Thread.currentThread().getPriority()); System.out.println("Child thread priority: "+t.getPriority()); } } Output: Main thread priority old: 5 Main thread priority new: 8 Child thread priority: 5
@pratapa.k7802
@pratapa.k7802 6 жыл бұрын
You are correct!!!
@human6116
@human6116 6 жыл бұрын
good observation...you are right
@duhudu
@duhudu 5 жыл бұрын
Yes, you are right and the logic behind it is that you can only inherit once from parent, to inherit something else(something new), you have to create a new object. Its like someone has a child and after birth of the child you altered the DNA of parent, so you can't expect that DNA of child should also get altered, only way is to give birth to new child i.e. creating new object.
@prakherjindal5440
@prakherjindal5440 Жыл бұрын
Thread priority - 08:15-11:15, 18:00-19:00, 20:05-20:50, 24:05-25:50 Default priority - 29:30-31:05, 42:48(check board content) priroity support on OS - 56:10-57:30
@bhaveshgujarathi926
@bhaveshgujarathi926 8 жыл бұрын
Easy and beautiful explanation in every video.. thanks a lot!!
@pradeepkumar-lb1ym
@pradeepkumar-lb1ym 4 жыл бұрын
Great class by durga sir on thread priority in multithreading
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Pradeep. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@KishoreKumar-ur3br
@KishoreKumar-ur3br 3 жыл бұрын
He explains all concepts detailedly, which is good. But this thread priorities topic is not very difficult topic to understand. Previous videos on extending Thread class and implementing Runnable interface require detailed explanation. But here he can quickly proceed, but he took time to explain simple concepts which I feel is not required.
@mrProgrammingGeek
@mrProgrammingGeek 4 жыл бұрын
At 46:10, the question you asked: Can you tell what will be the output of that code? You said child thread followed by Main thread => This will be true iff you have a single-core machine. For multicores, the output will be random.
@preetikumari5123
@preetikumari5123 3 жыл бұрын
This is what I was looking for. As when I executed the above program I was getting mixed output and I was confused... Thanks for the clarification Noname Sagittarian.
@meena7222
@meena7222 3 жыл бұрын
Thank you, this cleared my confusion
@mayankbatra3418
@mayankbatra3418 6 жыл бұрын
Hi @durga Sir, Session 3 of Multithreading is showing as a private video, your videos are really awesome and it explains things in a really beautiful manner. I don't want to miss any of those videos. It would be really helpful if you can send me the invite to watch the private video(session 3) of multithreading. Thank you very much !
@ejajshaikh3704
@ejajshaikh3704 4 жыл бұрын
Durga sr you are the best.like for durga sr
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Ejaj. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@lordofmech
@lordofmech 2 жыл бұрын
amazing explanation sir keep do more videos
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 2 жыл бұрын
Hello Friend. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@vivekpun7580
@vivekpun7580 7 жыл бұрын
Sir your classes are really good u explain very well and after getting you lectures My all daouts will clear Thank you sir
@akware977
@akware977 4 жыл бұрын
Thank you Durga sir for everything.
@arivazhagang924
@arivazhagang924 6 жыл бұрын
Hi..guruji I have completed my PG Degree in computer science engineering but I did not learn anything from those 6 years except marks,But I learnt many things just in 1 months because of you..
@anilkumar-yk5uz
@anilkumar-yk5uz 2 ай бұрын
Am watching these videos in 2024, Durga sir great explaination. Sir any videos on spring , springboot & Microservices.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 2 ай бұрын
Hello Anil. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@javawidhitesh
@javawidhitesh Жыл бұрын
Thank u sir for give the beautiful content
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions Жыл бұрын
Hello Friend. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@liveonyoutube5487
@liveonyoutube5487 4 жыл бұрын
You are amazing sir, thanks a lot. I always waiting for your story in every video.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Kuldeep. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@rizwanshahid1447
@rizwanshahid1447 6 жыл бұрын
Thanks so much. Durga Sir. you are super.
@siddheshgadgil8504
@siddheshgadgil8504 4 жыл бұрын
Very clear and precise explanation
@mitulpatel348
@mitulpatel348 7 жыл бұрын
Nice Video. I could see one fault in this tutorial while setting priority. ThreadScheduler doesn't give a chance to child thread first though you are setting highest priority for child thread. Output is unpredictable.
@nutanchandra5161
@nutanchandra5161 4 жыл бұрын
Best teacher in my life
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Chandra. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@aadityamittal9408
@aadityamittal9408 4 жыл бұрын
Sir u teach very good....I am a big fan of you
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Aaditya. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@bodhisatwadash2823
@bodhisatwadash2823 7 жыл бұрын
Sir, I sincerely follow all your core java videos and i also make notes from your video. I just want to know what's that beep in this video at 57:20.. :-)
@akashkala9299
@akashkala9299 3 жыл бұрын
maybe talks of something How to install Cracked version of MS windows with keys. :)
@umasinha3835
@umasinha3835 8 жыл бұрын
thankyou very much sir for uploading such a nice helpful videos
@thinksix1925
@thinksix1925 4 жыл бұрын
Thanks for teaching sir 🙏
@afifkhaja
@afifkhaja 4 жыл бұрын
Fantastic lecture
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Afif Khaja. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@utsavmodh9698
@utsavmodh9698 8 ай бұрын
Durga sir can make us to digest Java without having stomach issue😅
@EngineerVaibhav
@EngineerVaibhav Жыл бұрын
84th video completed🎉
@PavanKumar-kf6fm
@PavanKumar-kf6fm 6 жыл бұрын
explaination is super sir .........screen recording problem at 55:06
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Pavan Kumar, Thanks for your valuable feedback.It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/U1KKyi You an see more Java videos following link: Java tutorial by durga sir goo.gl/XWb4RL Java 9 by durga sir goo.gl/hXGyBW Java 1.8 Version New Features by Durga sir goo.gl/iHXXYU Adv Java JDBC Tutorial by Durga sir goo.gl/8q16Eo OCJA 1.8 Java SE 8 Programmer - I (1Z0 - 808 ) By Durga sir goo.gl/gC6R7f Core Java by NagoorBabu sir goo.gl/s6Nvj1 Advenced Java by Nagoorbabu sir goo.gl/ZZonzJ CoreJava by Ratan goo.gl/3VM19v Advanced Java jdbc by Ratan goo.gl/Rn2UXr Advjava tutorials - JSP by Ratan goo.gl/Z6ytxm Adv java servlets tutorial by ratan goo.gl/zTwi9y Servlet and JSP Tutorial by anji reddy goo.gl/jZMRUv Advanced Java Jdbc by Anjireddy goo.gl/16CGzX Hibernate byAnjireddy goo.gl/qQojvZ Struts by Anjireddy goo.gl/nE1Eof Spring by Mr.AnjiReddy goo.gl/NfN14R ADV JAVA by Naveen goo.gl/bhSsXF Spring by Mr.Naveen goo.gl/huVwFN Hibernate by Mr. Naveen goo.gl/TY3Wpd Struts by Mr.Naveen goo.gl/Vkmiw7
@pushparay5554
@pushparay5554 6 жыл бұрын
I love you sir. You are awesome. Nice personality.
@saddamahmad2310
@saddamahmad2310 4 жыл бұрын
thank hyou very much sir for this video
@SurajMahli
@SurajMahli 4 жыл бұрын
Sir there might be multicore CPU and got chance to execute simultaneously in different core. Please answer You are best teacher.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Suraj. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@GovardhanReddy-u3h
@GovardhanReddy-u3h 3 ай бұрын
Durga's sir teaching islike a ghee with rice
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 3 ай бұрын
Hello Friend. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@shivamkumar-qs7er
@shivamkumar-qs7er 5 жыл бұрын
Again Amazing All !
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 5 жыл бұрын
Hello Shivam. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@KoustavBhakat
@KoustavBhakat 3 ай бұрын
Bu if we use the priority concept, how does it make sense of using multi threading. If I have two threads having 10,7 as priority, then these two will not execute parallelly. In some scenarios, yes it is useful but not in most of the cases.
@MajidKhan-wk8ph
@MajidKhan-wk8ph 5 жыл бұрын
You are geniuses teacher in the world Sir I have one doubt if we set priority then our code will not be run saimultensoly then what is the benefit of multi threading
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 5 жыл бұрын
Hello Majid Khan. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@ranveervaghela7030
@ranveervaghela7030 4 ай бұрын
Completed on 25-06-2024 at 12.48 AM :) and I will try to send mail to Microsoft asking Thread Scheduler patch for windows 11
@-AjayChauhan
@-AjayChauhan 6 ай бұрын
Completed this video too 27 April, 2024 Day 51 of #75daysofcode in Java
@vivekbudge9706
@vivekbudge9706 4 жыл бұрын
Thank you so much sir :)
@kiranrajds9651
@kiranrajds9651 9 жыл бұрын
Nice videos Sir.......
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 9 жыл бұрын
Hello, We are very Happy to say Now you can access All DURGA Sir's Core Java with OCJP/SCJP Video Sessions(200 Videos,21 Chapters,200 hours ). To get Maximum Benefit from these video sessions, compulsory you have to write notes also. Sir will dictate each and every point clearly. Demo Sessions on KZbin: 1.LanguageFundamentals(16Videos) kzbin.info/www/bejne/m4W7lWtvqZ2hnas 2.Operators&Assignments(7Videos) kzbin.info/www/bejne/Z3uqgIOeft6bd68 3.FlowControl(6Videos) kzbin.info/www/bejne/jmfVhGyseZ6kgw 4.ExceptionHandling(10Videos) kzbin.info/aero/PLd3UqWTnYXOnSkaum39zWYI6bPb3i7liz Please give your valuable feedback and it is very important and helpful for us. Note:-If you are interested for full version of videos please revert back for more information. Fee : 6000/- Duration: 6-months DURGASOFT Online Training Team, Mobile : +91-8885 25 26 27, +91-7207 21 24 28 Mail ID : durgasoftonline@gmail.com , durgasoftonlinetraining@gmail.com
@phanikumarmanchala1765
@phanikumarmanchala1765 8 жыл бұрын
when we are setting thread priority and making child thread as high priority and making it to execute prior than main thread, then we can simply call the run method directly also na, we get the same output, and in both cases main method for loop will wait until child method for loop execution gets complete, what is the use of thread priority? if we default want to execute child thread prior than main thread? it can be done by method calling too..
@shabnamnaaz4676
@shabnamnaaz4676 8 жыл бұрын
if you call run method directly, just as a normal function call, no child thread is created ,in that case there will be only one flow of execution,, that is main thread only
@sualehqureshi4570
@sualehqureshi4570 6 жыл бұрын
Hello Sir Your explanation is awesome.Thank you for your support for free. i would just like to request you to upload the 3rd video please,since the 3rd video from multithreading concept is missing
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Sualeh qureshi. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. For Multithreading videos, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@shortsfact707
@shortsfact707 6 жыл бұрын
Have you got part-3 of multithreading
@sualehqureshi4570
@sualehqureshi4570 6 жыл бұрын
No
@verrymariyanto8377
@verrymariyanto8377 6 жыл бұрын
where is the third part?...i dont understand there is some people who gave thumbs down,,i think is really nice video
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Mariyanto. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. For Part - 3 video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@tusharshukla7215
@tusharshukla7215 5 жыл бұрын
Dear Sir, I am very much thankful of you and whole Durgasoft team. The way of teaching is very good to make us understand the things very clearly. I've one query, on this video @ 33:03 min you have talked about Runtime exception "IllegalArgumentException" , is there any specific reason why SUN did not put this under Checked Exception even there is already predefined limit from 1 to 10. So if someone e.g. Thread.setPriority(14) then immediately compiler should give and error. Thanks in advance !! Sincere thanks !!
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 5 жыл бұрын
Hello Tushar. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@ironhide9955
@ironhide9955 5 жыл бұрын
Hi Tushar, please do share the answer if you have it....
@minyoonji9509
@minyoonji9509 5 ай бұрын
I think the reason might be because the data type of the argument is 'int'. Since values 1 to 10 are in the range of int data type it does not come under checked exception. It is similar to how a negative array size does not throw compile time error while creating an array.
@ankursingh4115
@ankursingh4115 7 жыл бұрын
Hi Sir, If a system has multiple processor, then wouldn't it execute all thread simultaneously even if you have set different priorities.
@राजनगोंगल
@राजनगोंगल Жыл бұрын
👍👍👍👍👍👍
@shaileshsingh1717
@shaileshsingh1717 4 жыл бұрын
After that rank joke : me : gajab bejjati h😂😂
@satishchowdary1276
@satishchowdary1276 9 жыл бұрын
Good Explanation..
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 9 жыл бұрын
Hello, We are very Happy to say Now you can access All DURGA Sir's Core Java with OCJP/SCJP Video Sessions(200 Videos,21 Chapters,200 hours ). To get Maximum Benefit from these video sessions, compulsory you have to write notes also. Sir will dictate each and every point clearly. Demo Sessions on KZbin: 1.LanguageFundamentals(16Videos) kzbin.info/www/bejne/m4W7lWtvqZ2hnas 2.Operators&Assignments(7Videos) kzbin.info/www/bejne/Z3uqgIOeft6bd68 3.FlowControl(6Videos) kzbin.info/www/bejne/jmfVhGyseZ6kgw 4.ExceptionHandling(10Videos) kzbin.info/aero/PLd3UqWTnYXOnSkaum39zWYI6bPb3i7liz Please give your valuable feedback and it is very important and helpful for us. Note:-If you are interested for full version of videos please revert back for more information. Fee : 6000/- Duration: 6-months DURGASOFT Online Training Team, Mobile : +91-8885 25 26 27, +91-7207 21 24 28 Mail ID : durgasoftonline@gmail.com , durgasoftonlinetraining@gmail.com
@vaibhavshinde1976
@vaibhavshinde1976 8 жыл бұрын
it is very very helpful videos...thanks a lot @durgasoft
@abdulwahidshikalgar1808
@abdulwahidshikalgar1808 7 жыл бұрын
Hello Can you please cover topics reentrantlock example ,cyclicbarrier ,countdownlatch ffrequently asked in interview
@vinaykumar0376
@vinaykumar0376 4 жыл бұрын
In 45.30, child thread has hight priority means child thread has max priority.. because in THREAD PRIORITY concepts hight priority and low priority is invalid.
@NiteshYadavnitw
@NiteshYadavnitw Жыл бұрын
😘😍
@jitumyself4082
@jitumyself4082 7 жыл бұрын
sir plz make video regarding advance Java as well..sir what is the name of the book that u have written for ocjp in Java plz
@mohitsolanki4874
@mohitsolanki4874 6 жыл бұрын
please upload part-3 video of multithreading
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Mohit. For Multithreading Part-3 video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@ultimatewarriorfrieza275
@ultimatewarriorfrieza275 4 жыл бұрын
Please tell what's that tag line Clear for (insert statement). We speak English differently..
@drdominance9392
@drdominance9392 2 жыл бұрын
it's called "Clear for all of you. Right?".
@rohithguptathodupunuri7303
@rohithguptathodupunuri7303 3 жыл бұрын
i think that beep at last is: in ameerpet 350 rupees is the CD i guess it is 350 or 3000 i couldnt get the exact lip reading ha ha
@salesforcedream
@salesforcedream 6 жыл бұрын
Please sir upload part 3 of multithreading
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Sunil. For Part 3 Multithreading, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@ganeshiitr-cse6328
@ganeshiitr-cse6328 7 жыл бұрын
Awesome videos sir ....one doubt that sir explained a program during 39:50 , eventhough t.start() is not called and we are trying to set priority for child is't this contradiction that without starting thread we are setting its priority ...? Someone clear this ....
@phanicherukuri8827
@phanicherukuri8827 7 жыл бұрын
we are trying to set thread priority after thread instantiation. Before starting a thread we are setting priority, so thread scheduler can execute threads based on their respective priorities.
@memedump69
@memedump69 4 жыл бұрын
@@phanicherukuri8827 i had the same question. But how does it know its a thread until t.start is executed. Before that its just a normal function call right?
@manashranjan1267
@manashranjan1267 9 жыл бұрын
Thank's Sir...............
@venkataramana9129
@venkataramana9129 7 жыл бұрын
good faculty in hyd
@maheshbabu-te8sk
@maheshbabu-te8sk 4 жыл бұрын
only one word java means durga sir
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Mahesh. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@nalinikantamohanty7528
@nalinikantamohanty7528 Жыл бұрын
can any one told me which thread is best and why?
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions Жыл бұрын
Hello Nalini. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@mdrahilshahzad8242
@mdrahilshahzad8242 7 жыл бұрын
Thanks sir
@iamdivyaprakash
@iamdivyaprakash 2 жыл бұрын
legend
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 2 жыл бұрын
Hello Friend. Thanks for your valuable feedback. It will boost us to do new things. Please subscribe to get updates about new videos. You can view all other Core Java with SCJP/OCJP Videos by Durga sir in the following link: goo.gl/kqvaf2
@shivamkanodia384
@shivamkanodia384 6 жыл бұрын
I have some doubts related to last example of Thread Priorities. Suppose there are 5 ticket counters and one C.M and one Minister comes to buy a ticket, even the C.M has higher priority still both can buy tickets simultaneously without having to wait. Compare this to the processor if computer processor has resources to allocate to the Threads ,then why would it keep the threads waiting until main thread completes its execution, thats the concept of threads. Yes, if processor resources were not enough to execute both simultaneously, then it should keep the thread with lower priority in waiting queue. Please justify your explanation or correct it.
@swetaprakash2532
@swetaprakash2532 3 жыл бұрын
Hi Sir, I have one small doubt. Why do we have thread priority ranging from 1-10 only? Regards Sweta
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 3 жыл бұрын
Hello Sweta Prakash. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@ayyappareddy999
@ayyappareddy999 7 жыл бұрын
Can we set priority for a Thread after we start it?
@taani9526
@taani9526 6 жыл бұрын
After changing main thread priority why it is still printing 5 for main thread?
@akshaytelang4532
@akshaytelang4532 7 жыл бұрын
The JVM, which gets its turn at the CPU by whatever scheduling mechanism the underlying OS uses, operates like a mini-OS and schedules its own threads, regardless of the underlying operating system - can someone explain in detail.
@VinayKumarcs127
@VinayKumarcs127 6 жыл бұрын
Please give me access to Part 3 video of the series ! Thank you so much.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Vinay. For Part 3 video access, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@VinayKumarcs127
@VinayKumarcs127 6 жыл бұрын
I contacted above email Id, they are asking for 8000 Rs. Seriously I didnt understand why I have to pay 8000 bucks for this single video. Anyways thank you for other videos. This is not fair.
@Varsha123Varsha
@Varsha123Varsha 5 жыл бұрын
Why do we give Thread.currentThread().getPriority(); to get the priority of main thread and t.getPriority() for other thread.. What's the difference
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 5 жыл бұрын
Hello Vibrant. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@paras203
@paras203 5 жыл бұрын
HI Vibrant, We are doing Thread.currentThread().getPriority() for main thread because we have not explicitly defined main thread, it is internally using main thread. So, in order to have its priority we are using that. For others, we have explicitly defined a thread and we are using its object to get priority. Thread.currentThread() returns the thread which is doing that particular task. If you are writing Thread.currentThread() in MyThread class , you will get child thread
@praveenkumarreddy7674
@praveenkumarreddy7674 7 жыл бұрын
Hi sir, Can you please upload android tutorials...
@lokeshrangam4847
@lokeshrangam4847 7 жыл бұрын
hello sir iam very thankful to you sir..i have doubt in this thread priorities video tutorial..default main thread priority is 5,then we are trying to set child thread priority is 10.you said that main thread is responsible to create child thread...then how the child thread get chance to execute before the main thread.(child thread priority is 10 having high priority than main thread)
@vinodkumar-jv7lp
@vinodkumar-jv7lp 7 жыл бұрын
Child priority is 10 that is good but it is checked when it is started only, but Ur thinking that both are trying to start at same time, it is wrong initially JVM creates main thread then main thread will create child thread
@venkatagopiu7532
@venkatagopiu7532 7 жыл бұрын
lokesh Rangam that's y we are set the child thread priority before t.start()
@stutijaiswal1203
@stutijaiswal1203 6 жыл бұрын
sir can you plz upload the 3rd video
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Jasiwal. For 3rd video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@ramprasadugolla7566
@ramprasadugolla7566 6 жыл бұрын
Hi, sir I have one doubt, As you said child thread will always get the parent thread priority. then both parent and child threads priorities will become same (consider we are not changing the priority of main thread after creating child thread) then how can we guess the exact output.
@jagadeeshkumarkotha5645
@jagadeeshkumarkotha5645 6 жыл бұрын
hi ramprasadu golla , if you are not changing the priority of main thread => then both threads priority will become 5. then we cant't expect output order (o/p may be main followed by child (or) child followed by main (or) mixed )
@sandeepe5989
@sandeepe5989 6 жыл бұрын
When threads having same priority( main thread, child thread) are executed, then it depends on Thread Scheduler which one to execute.
@swamivishwajit
@swamivishwajit 8 жыл бұрын
please upload spring hibernate integration videos.....
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 8 жыл бұрын
Hi Vishwa.....this is the link...kzbin.info_all_playlists?sq=hibernate
@swamivishwajit
@swamivishwajit 8 жыл бұрын
No Playlist Found
@anupamkumartejaswi9210
@anupamkumartejaswi9210 9 жыл бұрын
sir please add exception handling videos
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 9 жыл бұрын
+anupam kumar tejaswi Hello, We are very Happy to say Now you can access All DURGA Sir's Core Java with OCJP/SCJP Video Sessions. To get Maximum Benefit from these video sessions, compulsory you have to write notes also. Sir will dictate each and every point clearly. Demo Sessions on KZbin: 1. Language Fundamentals(16 Videos) kzbin.info/www/bejne/m4W7lWtvqZ2hnas 2. Operators &Assignments(7 Videos) kzbin.info/www/bejne/Z3uqgIOeft6bd68 3. Flow Control(6 Videos) kzbin.info/www/bejne/jmfVhGyseZ5gp68 4. Exception Handling (10 Videos) kzbin.info/aero/PLd3UqWTnYXOnSkaum39zWYI6bPb3i7liz Please give your valuable feedback and it is very important and helpful for us. Note:-If you are interested for full version of videos please revert back for more information. Fee : 6000/- Duration: 6-months DURGASOFT Online Training Team, Mobile : +91-7207 21 24 28 +91-8885 25 26 27 Mail ID : durgasoftonline@gmail.com , durgasoftonlinetraining@gmail.com
@srinivasreddy7623
@srinivasreddy7623 7 жыл бұрын
iam giving same priority to two threads t1 and t2.i want execute t2 thread first then what to do.
@madhinimohammad9657
@madhinimohammad9657 6 жыл бұрын
sir please upload previous video
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Madhini. For Previous video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@Dead_Zone_0922
@Dead_Zone_0922 3 жыл бұрын
at 7:14 i hav given left and right
@vishalgupta-jf9mh
@vishalgupta-jf9mh 6 жыл бұрын
sir please add the multithreading session 3 that was private video in this session
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Vishal. For multithreading session 3 video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@DheerajGurjarhyd
@DheerajGurjarhyd 6 жыл бұрын
Sir Please add the missing video(Mult threading-part 3 video).I have already mailed to your team on same.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Dheeraj. For Mult threading-part 3 video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@eadunuripranay5977
@eadunuripranay5977 4 жыл бұрын
class MyThread extends Thread { } class DefaultThreadPriority { public static void main(String[] args) { System.out.println("default priority of a thread: "+Thread.currentThread().getName()+" is "+Thread.currentThread().getPriority()); //5 MyThread t=new MyThread(); System.out.println("Child priority of a thread: "+t.getName()+" is "+t.getPriority()); //5 //setting priority of main thread explicitly. // Thread.currentThread().setPriority(13); //java.lang.IllegalArgumentException Thread.currentThread().setPriority(9); System.out.println("default priority of a thread: "+Thread.currentThread().getName()+" after setting is "+Thread.currentThread().getPriority()); //9 System.out.println("Child priority of a thread: "+t.getName()+" after changing main thread is "+t.getPriority()); //5 } } As main thread priority is changed from by default 5 to 9, so child threads shd inherit from parent(main thread), so o/p shd be 9 in the last line but i'm getting 5 still? any suggestions please?
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 4 жыл бұрын
Hello Pranay. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627, 7207212427/28
@AdarshKumar-nl6rx
@AdarshKumar-nl6rx Жыл бұрын
because , you have created Mythread t when Main Thread having the prority 5 .
@Prabakarankpsiva
@Prabakarankpsiva 6 жыл бұрын
dear sir, can u please upload session 3...
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Kamal. For Session 3 Video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@shortsfact707
@shortsfact707 6 жыл бұрын
Hello Bro Have you got part-3 of multithreading
@Prabakarankpsiva
@Prabakarankpsiva 6 жыл бұрын
they given the contact details but i didn't contact them.. instead of that i refer another video for that particular session
@biswarupchakraborty5608
@biswarupchakraborty5608 6 жыл бұрын
Kamal Prabakaran please tell us the video you referred. 😅😅
@guptajigaming3840
@guptajigaming3840 4 жыл бұрын
Sir, I would like to give an alternative reason for the the reason that 'some OS is not supporting priorities' My Logic is their might be some time lag between Start() method and Run() method. When t1.start() executes then start() method has to do lots of formalities like registering a thread (that you told us in your previous video lectures) so when start() method is doing these formalities then main() thread might execute some of its iterations / statements because processor is free and we can see that when our child thread starts it's execution then it completely executes first then other method starts their execution because our child thread has highest priority so JVM is not disturbing him. PLEASE tell me my logic is valid or not.
@sl7876
@sl7876 6 жыл бұрын
SIR WHY YOU DELETE MULTI-THREADING PART-3 GETTING AND SETTING NAME OF THREAD VIDEO FROM KZbin
@manashdewangan8461
@manashdewangan8461 9 жыл бұрын
plz upload all multithreading video ie 10 to 13
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 9 жыл бұрын
Hello, We are very Happy to say Now you can access All DURGA Sir's Core Java with OCJP/SCJP Video Sessions(200 Videos,21 Chapters,200 hours ). To get Maximum Benefit from these video sessions, compulsory you have to write notes also. Sir will dictate each and every point clearly. Demo Sessions on KZbin: 1.LanguageFundamentals(16Videos) kzbin.info/www/bejne/m4W7lWtvqZ2hnas 2.Operators&Assignments(7Videos) kzbin.info/www/bejne/Z3uqgIOeft6bd68 3.FlowControl(6Videos) kzbin.info/www/bejne/jmfVhGyseZ6kgw 4.ExceptionHandling(10Videos) kzbin.info/aero/PLd3UqWTnYXOnSkaum39zWYI6bPb3i7liz Please give your valuable feedback and it is very important and helpful for us. Note:-If you are interested for full version of videos please revert back for more information. Fee : 6000/- Duration: 6-months DURGASOFT Online Training Team, Mobile : +91-8885 25 26 27, +91-7207 21 24 28 Mail ID : durgasoftonline@gmail.com , durgasoftonlinetraining@gmail.com
@ragsai5637
@ragsai5637 7 жыл бұрын
Dear Sir thanks for this video. I have a doubt sir, suppose in priorities child thread(10) having high priority than main thread(5). i.e after execution of the child thread only ( complete execution of the child thread or just initialization of child thread) will again start main thread my doubt is at what time main thread will start to execute again please clarify this doubt. suppose the child thread(priority10) having 50k lines of code and main thread (priority 5) having only 500 lines code then after start control flow of child thread at what time main thread will again starts execution (my doubt is after execution of how many lines of code of child thread will start main thread), THEN WHICH OUT PUT WILL COME FIRST MAIN THREAD (500LINES OF CODE) OUTPUT OR CHILD THREAD(50K LINES OF CODE) OUT PUT.
@venkatagopiu7532
@venkatagopiu7532 7 жыл бұрын
Nagendra Pabba boss as my knowledge on core Java 1st child thread 50k lines will be executed then 500 lines will be executed cause of min priority...
@madhinimohammad9657
@madhinimohammad9657 6 жыл бұрын
Sir please upload previous video please please please sir
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Madhini. For Previous video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@vijayalakshmi6028
@vijayalakshmi6028 6 жыл бұрын
I wrote the same program in net beans with main thread priority as 9. But "MyThread" priority is still 5 when I printed it. Please help me
@sandeepe5989
@sandeepe5989 6 жыл бұрын
Add the code here...
@devanshimishra6976
@devanshimishra6976 6 жыл бұрын
Hi Sir, Video no 3 is missing. please upload it asap.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Devanshi's. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212428/27
@devanshimishra6976
@devanshimishra6976 6 жыл бұрын
Ok
@siddharthkalani2040
@siddharthkalani2040 6 жыл бұрын
Devanshi, do you have 3rd video... ??
@devanshimishra6976
@devanshimishra6976 6 жыл бұрын
No ya! :(
@laphing12344
@laphing12344 6 жыл бұрын
did you get the 3rd video ..
@RahulTiwari-nq3jp
@RahulTiwari-nq3jp 8 жыл бұрын
Dear DurgaSir Every java Class Has Parent class named as Object Class..when we call getClass().getName() of main thread it gives java.lang.Thread Class.......my question is sir a class extends object class impilicity so thread class can also extends implicity can its denies inheritance rule (a class extends only one class at a time)or what is the reason and logic behind this..please explain me sir
@sagarmehra3503
@sagarmehra3503 8 жыл бұрын
Can you please reframe your last lines, its not very clear. I can try answering it. Or if you already found the solution, please share.
@swapyish
@swapyish 8 жыл бұрын
Rule :A class extends Object class if and only if you dont extend it by another class. EG: class Bird{} class Cuckoo extends Bird{} .... Here , Cuckoo will extend Bird class rather than Object class according to the rule. Bird however does not extend anything , so it will be marked with Object as its parent.
@sushma6314
@sushma6314 6 жыл бұрын
Why is session - 3 missing ? I am very curious what I would be missing without it.
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 6 жыл бұрын
Hello Sushma. For Session - 3 video, Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627,7207212427/28
@Ekta-gautam-x9m
@Ekta-gautam-x9m 7 жыл бұрын
sir please upload servlet videos
@DurgaSoftwareSolutions
@DurgaSoftwareSolutions 7 жыл бұрын
Hi Royal. Plz contact our online team durgasoftonlinetraining@gmail.com or call us on this number +918885252627
Core Java with OCJP/SCJP: Multi Threading Part-5 || yield() || join()
1:49:27
Durga Software Solutions
Рет қаралды 401 М.
Core Java with OCJP/SCJP: Multi Threading Part-3 || The ways of defining a Thread Part-2
1:18:54
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 15 МЛН
PRANK😂 rate Mark’s kick 1-10 🤕
00:14
Diana Belitskay
Рет қаралды 9 МЛН
Walking on LEGO Be Like... #shorts #mingweirocks
00:41
mingweirocks
Рет қаралды 6 МЛН
Из какого города смотришь? 😃
00:34
МЯТНАЯ ФАНТА
Рет қаралды 1,6 МЛН
Core Java with OCJP/SCJP: Exception Handling Part-4 || finally block
47:40
Durga Software Solutions
Рет қаралды 182 М.
Core Java with OCJP/SCJP: Multi Threading Part-10 || Inter Thread Communication Part-1
1:18:26
Core Java with OCJP/SCJP: Multi Threading Part-2 || The ways of defining a Thread Part-1
1:44:56
Java threads 🧵
16:01
Bro Code
Рет қаралды 119 М.
#86 Multiple Threads in Java
11:30
Telusko
Рет қаралды 138 М.
Core Java With OCJP/SCJP: Collections Part-3 || collection & collections|| list & set
1:00:55
Java Interview Questions | Java Program Solving | Core & Advance Java | Part 1
39:46
The Kiran Academy - Java By Kiran
Рет қаралды 252 М.
Amazing remote control#devil  #lilith #funny #shorts
00:30
Devil Lilith
Рет қаралды 15 МЛН