Just to say, i'm an IT student and whenever i see something new about Java in my college i go here to yt and look up on your account since i found out that you're much eaiser to understand than my professors, asistants and mentors are. THANK YOU FOR MAKING ME PASS MY EXAMS!!! xD
3:57 - It's exceptional how you tackle the topics of your videos so comprehensively in such a limited timeframe. I wondered why a colleague of mine could not explain to his students the hierarchy of exceptions, while you cover it in the basics of your tutorial here. Your videos are so good that I'm constantly thinking of designing a worksheet where one of your videos is the topic and my students have to prepare the topic of the lessons with the help of both - a flipped classroom principle. And before I had actually finished your video, I was thinking about whether you would cover the execution of code after an exception is thrown, and voilà, you also covered that at 9:44. Please continue making videos about Java related stuff.
Thank you for imparting your knowledge to all of us on TH-cam! I pay attention to the Java lectures at my University, but you have a way of explaining it better than my professors.
Thanks for helping us all through Dev School John, you're very articulate and entertaining to boot! I'm sure i speak for us all when i say "We appreciate you".
Thank you for taking the time to make these videos! Clear and concise as always, I can't be the only one who gets sad when they search a topic they are having issues with and don't see one of your videos addressing the topic/issue.
Thank you for giving a real world example of when a "finally" block makes sense to use! Knowing real world examples of why/ when a particular thing would actually be used is a huge step for me in understanding a concept. A lot of times things are explained without showing a real world example of when it's needed and I get hung up on the thought of "why not just do this other much more simple thing that seems to do the exact same thing?"
Good advice to use Finally{} to close connections, etc. Then no matter what might explode in the try { } it won't abandon the connections or leave files open.
Hello John, Thanks for such wonderful tutorial. One thing that you have missed about finally is, finally is not executed if System.exit(0); is called Ex. package test; public class FinallyExample { public static void main(String[] args) {
try { System.out.println(3); System.exit(0); } catch (Exception e) { System.out.println(4); } finally { System.out.println(5); } } } and finally, instead of using finally you could use try with resource
Hi. John! Enjoying every single one of your videos. I just wish you were around when I was back in college. You would have saved me a ton of time spent reading all kinds of manuals. Keep up the great work!
Subscribing because I’m in class for Java now and your videos have literally explained the content 100x better than the block of instruction. Thank you for being so clear!
Ty mate. I was searching for why the finally block even exists for a long time. But now that i know it too runs even after a return is called, it pretty much clear
2:33 You aren't alone John! It took me my 90+ pages teacher's notes- where this was written over and over- a 2hour lecture and finally your video to understand that LOL
Could you pls help me because I've a problem with understanding the finally block? Where is the different between the line system.out.println(End here) and the finally block....I mean we would always execute the system.out.println(End here) instruction
@@aaronmesfine2399 no you got it all wrong, end here is just a output that we wanna show when we run the program it's optional and finally block will run no matter the case
Thanks for the very good explanation, great job! a couple things I would add to the video: Autoclosable and try with resources (you did talk about DB connections/Files you wanna close in finally block, would be great to mention Autoclosable there too). But I see that you have a separate video on checked vs unchecked, which I was about to suggest putting here as well, perhaps there's another one on try with resources too. All in all, thanks again and keep up the good work!
Thank you for the beginner friendly and accessible language and context breakdown!! ;-; So much much educational content assumes a certain level of knowledge that makes learning really frustrating when struggling with comprehension. Definitely coming back to this channel to help study class concepts!
My dude, I absolutely love your videos. I'm currently 2 years into my BA in CompSci and whenever I don't fully understand something I watch your videos and It makes it a lot more clearer. I usually watch slowly, coding along with the video and adding notes as I go. The way you explain things is just leveled up way beyond any of the university CompSci teachers I've encountered. Also you seem like a cool dude lol. Was wondering if you were ever planning to add to your Java course? Most of the topics within, I'm pretty comfortable with. Just curious if you were ever thinking of going further ahead into more like intermediate (idk?) level concepts, maybe like DataStructures/Algorithms etc.
Bro, thank you so much! Your videos are amazing, as a java developer myself, I learn so much from your videos! Even with one year of experience already. God bless you bro and regards from Russia!
I would also like to add, that if you want to do something in java with exceptions and you don't know all the exceptions included, a good ide as Eclipse does this for you.
You can also throw a generic Exception that will catch all, it's quite common to see specific exceptions followed by a generic catch all exception block. IMO
Best Tutor ever ❤... Much love from here bro... Who else noticed from the video at length 11:02 that the last line of code didn't execute to print out "End here" or is it because of the return keyword?
I GENUINELY HOPE THAT THIS GUY IS NOT VERY VERY OLD AND WOULD LEAVE TEACHING AS JOHN IS ONE OF ONLY THOSE TEACHERS WHO I LOVE TO LEARRNN FROM.CLEAR AND CONCISE, INTERESTING, BTS TAKEN CARE OF.JUST LIKE A WOW
Very helpful video!! You explained all things very clearly By the way, what is use of 'throws' keyword & Does it make a difference when used with unchecked exceptions?
Thanks for the vid! It was illuminating, though kinda hard to follow. The jumps between different versions of the code forced me to stop it and duplicate the lines in order to try them by myself. Can't say if it's a problem, really, but that's my genuine feedback, so take it or leave it). Once again - big thanks for the explanations.
Great vid as always John. Can you please also explain the "throw" and "throws" keywords? I've seen "throws" in a method signature, but wasn't sure exactly what that did.
Thanks! Well I don't have a video on "throw" specifically, but you basically just use it when you want to explicitly throw an exception in a certain situation. if (someParameter == null) { throw new IllegalArgumentException("Hey someParameter can't be null!"); } Then whatever code is calling this code has to handle that exception however they see fit. "Throws" is used in the method signature when the method could throw a certain kind of exception, and it's not being caught anywhere within that method. It mostly has to do with "checked" exceptions. There's a good explanation on how it's used in my most recent video here: th-cam.com/video/bCPClyGsVhc/w-d-xo.html
hello john, i learnt java by watching your tutorial videos you makes me easy to understand and i'm very thankful to you.... will u do videos about user-defined exception....thank you
Hello, John! First of all thank you for your videos, they help us a lot! I was wondering why line 17 at 11:00 wasn't executed. I thought 'return' in try block is related to this block and it should've forced to exit this 'try'. Or 'try' isn't considered as a method (if not, does it also apply for 'try with resources'?), thus 'return' is making to exit the 'main' method?
Good question! A return statement will return out of the method completely, not just outside of the try block. So in this case that return exits the main method, ending the program. You'll almost never use a return statement in the main method, and just let it complete the main method as usual. This was just to illustrate that the finally block still gets executed, even though it returns out of the method without executing the print at line 17.
I just started watching your videos and am really impressed. You explain things very clearly and precise. My one question since I’m newer to Java, do you have any documentation or direction on how you move through your code so quickly? I know some of the basics but you move through your code very fast and effectively.
Just to say, i'm an IT student and whenever i see something new about Java in my college i go here to yt and look up on your account since i found out that you're much eaiser to understand than my professors, asistants and mentors are. THANK YOU FOR MAKING ME PASS MY EXAMS!!! xD
Ditto, he explains everything so clearly, it's insane how much more i can understand from here than from any of my classes lol
Same, but for me i think its the excellent live coding that makes it so easy to understand :D
3:57 - It's exceptional how you tackle the topics of your videos so comprehensively in such a limited timeframe. I wondered why a colleague of mine could not explain to his students the hierarchy of exceptions, while you cover it in the basics of your tutorial here.
Your videos are so good that I'm constantly thinking of designing a worksheet where one of your videos is the topic and my students have to prepare the topic of the lessons with the help of both - a flipped classroom principle.
And before I had actually finished your video, I was thinking about whether you would cover the execution of code after an exception is thrown, and voilà, you also covered that at 9:44.
Please continue making videos about Java related stuff.
In my experience people who don't have a complete understanding themselves have problems explaining it it others :D
@@Kfimenenpah as Einstein said
If you happen to create that worksheet, pls do share it with us also!! Please 🙏
Thank you for imparting your knowledge to all of us on TH-cam! I pay attention to the Java lectures at my University, but you have a way of explaining it better than my professors.
The best Java instructor out there. Your videos are a binge watch thing. Thanks for making them simple and interesting. ❤️
Thanks for helping us all through Dev School John, you're very articulate and entertaining to boot! I'm sure i speak for us all when i say "We appreciate you".
I am a non IT background person and doing a course in IT currently and your videos are super simple to understand. Thank you!
You are nothing less than blessing to us Java programmers, Thank You John.
40 minutes watching videos about Exceptions, and I only understood it after I saw yours. Thank you very much!
Thank you John. You always make it easy to understand. You've really helped me, you have no idea.
Best Java teacher I have ever had. John explains almost any topic in a very understandable way. Thank you very much for your work.
I needed this, I'm 20 and I know that I need advice from the right people
Thank you for taking the time to make these videos! Clear and concise as always, I can't be the only one who gets sad when they search a topic they are having issues with and don't see one of your videos addressing the topic/issue.
I understand you better than my university teachers who explain it in spanish... ¡Keep it going! ¡Greets from Argentina!
a little addition : the code inside "Finally" will execute except if there is SYSTEM.EXIT() in the "try catch"
I am student in computer science in my last year and you thought me some stuff I didn't know. Good Stuff!
How does it become so SIMPLE when it is YOU who explain it 😃 Another great video, thanks !
John I just want to say thank you. Your videos and explanations are so helpful.
Tomorrow is my external exam watched this now. Understood each and every concept will always be thankful to u!
It's great to have someone explain clearly these very important keystone concepts in Java! Thank you!
Cant believe this dude doesn't have million of subs. Many time I just watch those videos recreationally haha
Thank you for giving a real world example of when a "finally" block makes sense to use! Knowing real world examples of why/ when a particular thing would actually be used is a huge step for me in understanding a concept. A lot of times things are explained without showing a real world example of when it's needed and I get hung up on the thought of "why not just do this other much more simple thing that seems to do the exact same thing?"
Brother you are saving my college career. The videos are so easy to understand and help me a ton. thank you so much
Good advice to use Finally{} to close connections, etc. Then no matter what might explode in the try { } it won't abandon the connections or leave files open.
This was the best video I could find for a refresher on how to handle exceptions. Very well done!
Also you can use try with resources block, to close all connections, without needing to use finally block.
Hello John,
Thanks for such wonderful tutorial.
One thing that you have missed about finally is, finally is not executed if System.exit(0); is called
Ex.
package test;
public class FinallyExample {
public static void main(String[] args) {
try {
System.out.println(3);
System.exit(0);
} catch (Exception e) {
System.out.println(4);
} finally {
System.out.println(5);
}
}
}
and finally, instead of using finally you could use try with resource
I have assignment deadline in one day and 10 hours and you just saved me so much time, I think I can finish it If I dont sleep tonight Thanks!
Guys, you can forget all these videos out there and just watch this one. Everything is fine explained here!
Hi. John! Enjoying every single one of your videos. I just wish you were around when I was back in college. You would have saved me a ton of time spent reading all kinds of manuals. Keep up the great work!
Subscribing because I’m in class for Java now and your videos have literally explained the content 100x better than the block of instruction. Thank you for being so clear!
Ty mate. I was searching for why the finally block even exists for a long time. But now that i know it too runs even after a return is called, it pretty much clear
This channel deserves more reach!
I love your content! Thank you
Thank you for taking the frustration out of learning Java. Your content is relatable and easy to understand .
you have no idea how much I'm grateful to you! thank you so much John
Legendary explanation! Thank you so much, John😄
2:33 You aren't alone John! It took me my 90+ pages teacher's notes- where this was written over and over- a 2hour lecture and finally your video to understand that LOL
When I get stuck I usually come to Coding with John, and then 100% of the time I get unstuck. Thank you.
Way better explanation than my algorithms and data structures prof gave. Thanks!
That final part about the finally behaviour was quite interesting.
Thank you so much for your videos I am studying a java module and I just wish they explained stuff as simply and nicely as you do!
The way he describes Java.. I am encouraged to become a developer now😊
Thank you very much for taking the time to explain this subject in such a magnificent
way.
I so enjoy your videos John. Every time like illumination. So clear, concise but comprehensive. Thanks a bunch!
Awesome, thank you!
I was so confused about the finally block but after watching this video it's all clear to me now. Thank you ❣
Could you pls help me because I've a problem with understanding the finally block?
Where is the different between the line system.out.println(End here) and the finally block....I mean we would always execute the system.out.println(End here) instruction
@@aaronmesfine2399 no you got it all wrong, end here is just a output that we wanna show when we run the program it's optional and finally block will run no matter the case
Thanks for these explanations, John! You're the best resource for clear, concise yet comprehensive Java tutorials!
Thanks for the very good explanation, great job! a couple things I would add to the video:
Autoclosable and try with resources (you did talk about DB connections/Files you wanna close in finally block, would be great to mention Autoclosable there too).
But I see that you have a separate video on checked vs unchecked, which I was about to suggest putting here as well, perhaps there's another one on try with resources too.
All in all, thanks again and keep up the good work!
You're the best thing that happened to Java since James Gosling
Thank you for the beginner friendly and accessible language and context breakdown!! ;-; So much much educational content assumes a certain level of knowledge that makes learning really frustrating when struggling with comprehension. Definitely coming back to this channel to help study class concepts!
This video was really helpful to get into the exception topic. Thanks!
My dude, I absolutely love your videos. I'm currently 2 years into my BA in CompSci and whenever I don't fully understand something I watch your videos and It makes it a lot more clearer. I usually watch slowly, coding along with the video and adding notes as I go. The way you explain things is just leveled up way beyond any of the university CompSci teachers I've encountered. Also you seem like a cool dude lol. Was wondering if you were ever planning to add to your Java course? Most of the topics within, I'm pretty comfortable with. Just curious if you were ever thinking of going further ahead into more like intermediate (idk?) level concepts, maybe like DataStructures/Algorithms etc.
Bro, thank you so much! Your videos are amazing, as a java developer myself, I learn so much from your videos! Even with one year of experience already. God bless you bro and regards from Russia!
John, thank you for your simplified explanation.
You are an awesome teacher and code writer. Thank you.
Handle this exception! This was an EXCEPTIONally useful video tutorial!
I learned more from this than my Java 1 college class.
Great man, soo simple and so much in so little time. Perfectly synced video!!
best channel explaining java concepts ever!!
I would also like to add, that if you want to do something in java with exceptions and you don't know all the exceptions included, a good ide as Eclipse does this for you.
You can also throw a generic Exception that will catch all, it's quite common to see specific exceptions followed by a generic catch all exception block. IMO
wow this video blew my mind! very insightful and easy to understand, thank you.
Love❤ From India U r Simply Amazing😊 it feels like whatever the Concept be it becomes easy when u explain it
Best Tutor ever ❤... Much love from here bro... Who else noticed from the video at length 11:02 that the last line of code didn't execute to print out "End here" or is it because of the return keyword?
John’s the real MVP!!! 🙌
Thanks for the video! It's fun to learn about fringe cases like the return statement in finally :)
Thank you John for all the videos, exceptional explanations.
I GENUINELY HOPE THAT THIS GUY IS NOT VERY VERY OLD AND WOULD LEAVE TEACHING AS JOHN IS ONE OF ONLY THOSE TEACHERS WHO I LOVE TO LEARRNN FROM.CLEAR AND CONCISE, INTERESTING, BTS TAKEN CARE OF.JUST LIKE A WOW
Man I would have had to read a 100 Pages or more to get less than what I got from your 10 Minute Videos. Thank you very Much!!!
Amazing! thank you for taking your time in all your videos, it really helps!
this is first time when i saw your video. I hope now i can learn whole java coding here
you explained it better than two-hour class, can you explain GUI components
Very helpful & crystal clear explanation. Thank you.
I like how my man calls method print but what it does actually is returning value :D. You are my man for naming :D
Very helpful video!! You explained all things very clearly
By the way, what is use of 'throws' keyword &
Does it make a difference when used with unchecked exceptions?
Throws is same as exception
Thx a mill John. Despite the value of your java tutorials, they're actually quite entertaining.
bro my uni uploads shitty presentations and if youve missed something tough shit. thank god for your channel.
i dont sup to many channels. but you deserve it so much.
Thanks for the vid! It was illuminating, though kinda hard to follow. The jumps between different versions of the code forced me to stop it and duplicate the lines in order to try them by myself. Can't say if it's a problem, really, but that's my genuine feedback, so take it or leave it). Once again - big thanks for the explanations.
better than my java teacher, awsome video!
Your video is very informative, thank you for taking the time to help all who need java help
soo clean, clear and concise. Thank you.
Thank you very much Sir
You're a great teacher
Thanks for the last example
Cleared all my doubts
Thanks. I appreciate the easy of explaining the concept
Very clear explanation. This man is a god!
Excellent video that makes this crystal clear
Great vid as always John. Can you please also explain the "throw" and "throws" keywords? I've seen "throws" in a method signature, but wasn't sure exactly what that did.
Thanks! Well I don't have a video on "throw" specifically, but you basically just use it when you want to explicitly throw an exception in a certain situation.
if (someParameter == null) {
throw new IllegalArgumentException("Hey someParameter can't be null!");
}
Then whatever code is calling this code has to handle that exception however they see fit.
"Throws" is used in the method signature when the method could throw a certain kind of exception, and it's not being caught anywhere within that method. It mostly has to do with "checked" exceptions. There's a good explanation on how it's used in my most recent video here:
th-cam.com/video/bCPClyGsVhc/w-d-xo.html
You really make me want to learn Java
hello john, i learnt java by watching your tutorial videos you makes me easy to understand and i'm very thankful to you....
will u do videos about user-defined exception....thank you
You're a great teacher John; thanks for sharing you're knowledge with us :)
Thankyou John. Good Explanation, Please Make more videos on Servlet,JSP,Spring,SpringBoot,Hibernete.
John sir,your way of explaining is really nice. please guide how i become a good coder like you
@coding with John...so understandable videos, please make one video on java wrapper classes and wrapped keywords
Top notch video over the internet! I am really appreciate it! Sir, where from are you?
Man, your content is just amazing! Thank you so much! 🙏
Bruh you are a life saver .
Your videos are really really good and easy to understand, thanks a lot
You are simply genius!🙌🏻
Thank you John, your channel is soooo coool! Hats off
So helpful every single video!!! Thank you!
Hello, John!
First of all thank you for your videos, they help us a lot!
I was wondering why line 17 at 11:00 wasn't executed. I thought 'return' in try block is related to this block and it should've forced to exit this 'try'. Or 'try' isn't considered as a method (if not, does it also apply for 'try with resources'?), thus 'return' is making to exit the 'main' method?
Good question! A return statement will return out of the method completely, not just outside of the try block. So in this case that return exits the main method, ending the program.
You'll almost never use a return statement in the main method, and just let it complete the main method as usual. This was just to illustrate that the finally block still gets executed, even though it returns out of the method without executing the print at line 17.
@@CodingWithJohn Thank you so much!
Tuxon24rus, you may be thinking of the *break* statement, which will exit a block.
I just started watching your videos and am really impressed. You explain things very clearly and precise. My one question since I’m newer to Java, do you have any documentation or direction on how you move through your code so quickly? I know some of the basics but you move through your code very fast and effectively.
Best Java channel