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
@jbrfr942 жыл бұрын
Ditto, he explains everything so clearly, it's insane how much more i can understand from here than from any of my classes lol
@bubble02 жыл бұрын
Same, but for me i think its the excellent live coding that makes it so easy to understand :D
@vannimehta28709 ай бұрын
I am a non IT background person and doing a course in IT currently and your videos are super simple to understand. Thank you!
@micleh3 жыл бұрын
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.
@Kfimenenpah2 жыл бұрын
In my experience people who don't have a complete understanding themselves have problems explaining it it others :D
@azuboof2 жыл бұрын
@@Kfimenenpah as Einstein said
@sauvikgoel5913 ай бұрын
If you happen to create that worksheet, pls do share it with us also!! Please 🙏
@XloachtopАй бұрын
"Exceptional" nice one
@jaredcampbell19752 жыл бұрын
Thank you for imparting your knowledge to all of us on KZbin! I pay attention to the Java lectures at my University, but you have a way of explaining it better than my professors.
@TheLexanor2 жыл бұрын
I understand you better than my university teachers who explain it in spanish... ¡Keep it going! ¡Greets from Argentina!
@laharibasu97312 жыл бұрын
The best Java instructor out there. Your videos are a binge watch thing. Thanks for making them simple and interesting. ❤️
@hovonbonioaleqsanyan9 ай бұрын
Best Java teacher I have ever had. John explains almost any topic in a very understandable way. Thank you very much for your work.
@Jesus_Na_Causa2 жыл бұрын
40 minutes watching videos about Exceptions, and I only understood it after I saw yours. Thank you very much!
@GratefulCoder Жыл бұрын
You are nothing less than blessing to us Java programmers, Thank You John.
@rayverN17yo3 жыл бұрын
Cant believe this dude doesn't have million of subs. Many time I just watch those videos recreationally haha
@jacobr97412 жыл бұрын
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".
@christopherboisvert69023 жыл бұрын
I am student in computer science in my last year and you thought me some stuff I didn't know. Good Stuff!
@manarsalem16857 ай бұрын
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
@LeyshaCharles20 күн бұрын
You re literally the only reason why I m passing my final tomorrow. Thank you so much!
@prashantbunde2 жыл бұрын
Tomorrow is my external exam watched this now. Understood each and every concept will always be thankful to u!
@tylerhewett3547 Жыл бұрын
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.
@christiangiamalis9924 Жыл бұрын
Brother you are saving my college career. The videos are so easy to understand and help me a ton. thank you so much
@Antal46 Жыл бұрын
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!
@shanisb952 жыл бұрын
How does it become so SIMPLE when it is YOU who explain it 😃 Another great video, thanks !
@binary-star1of203 жыл бұрын
Thank you John. You always make it easy to understand. You've really helped me, you have no idea.
@aquilhall26211 ай бұрын
It's great to have someone explain clearly these very important keystone concepts in Java! Thank you!
@DogmaticDoggoАй бұрын
im grateful you have this channel 😭❤️
@chisomemmanuel6160 Жыл бұрын
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?
@zeeg15299 ай бұрын
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!
@computer.tutorials11 ай бұрын
Legendary explanation! Thank you so much, John😄
@AdrianTregoning Жыл бұрын
When I get stuck I usually come to Coding with John, and then 100% of the time I get unstuck. Thank you.
@alexarditti94163 жыл бұрын
John I just want to say thank you. Your videos and explanations are so helpful.
@vikasgowdaja68813 жыл бұрын
Love❤ From India U r Simply Amazing😊 it feels like whatever the Concept be it becomes easy when u explain it
@SchnurriTV2 жыл бұрын
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
@matiasmoresi50402 жыл бұрын
This channel deserves more reach! I love your content! Thank you
@majestictrain Жыл бұрын
Way better explanation than my algorithms and data structures prof gave. Thanks!
@lalitmetkar3 жыл бұрын
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
@skfotografie5 ай бұрын
This video was really helpful to get into the exception topic. Thanks!
@paulus_germanus8 ай бұрын
You're the best thing that happened to Java since James Gosling
@robertoenriquechavezrodrig7312 жыл бұрын
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!
@ovey22142 жыл бұрын
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?"
@Lexyvil2 жыл бұрын
This was the best video I could find for a refresher on how to handle exceptions. Very well done!
@MdRahman-jw7vg7 ай бұрын
The way he describes Java.. I am encouraged to become a developer now😊
@zeppelinmexicano Жыл бұрын
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.
@Eljamo_0 Жыл бұрын
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!
@SaviorOfZeDamned2 жыл бұрын
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!
@SAM-ol5ip Жыл бұрын
you have no idea how much I'm grateful to you! thank you so much John
@iGleeson Жыл бұрын
Handle this exception! This was an EXCEPTIONally useful video tutorial!
@raniaoslh6106 Жыл бұрын
best channel explaining java concepts ever!!
@tramvaj122 жыл бұрын
I like how my man calls method print but what it does actually is returning value :D. You are my man for naming :D
@anyname8803 Жыл бұрын
a little addition : the code inside "Finally" will execute except if there is SYSTEM.EXIT() in the "try catch"
@fatmatakargbo8982 жыл бұрын
Thank you for taking the frustration out of learning Java. Your content is relatable and easy to understand .
@xiomaragonzalez6952 Жыл бұрын
wow this video blew my mind! very insightful and easy to understand, thank you.
@prajwalanimations23762 жыл бұрын
I was so confused about the finally block but after watching this video it's all clear to me now. Thank you ❣
@aaronmesfine2399 Жыл бұрын
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
@prajwalanimations2376 Жыл бұрын
@@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
@mikram622 Жыл бұрын
this is first time when i saw your video. I hope now i can learn whole java coding here
@gavinbenes9172 Жыл бұрын
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!
@nidahafeez7981 Жыл бұрын
Thanks for these explanations, John! You're the best resource for clear, concise yet comprehensive Java tutorials!
@68219652 жыл бұрын
Also you can use try with resources block, to close all connections, without needing to use finally block.
@pirminscholl509411 ай бұрын
i dont sup to many channels. but you deserve it so much.
@gettingup1002 жыл бұрын
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!
@AnthonyVillegas-bc9xd Жыл бұрын
John’s the real MVP!!! 🙌
@codingcoder6022 жыл бұрын
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!!!
@vivekneupane8807 Жыл бұрын
Great man, soo simple and so much in so little time. Perfectly synced video!!
@barrylauth68382 жыл бұрын
Thx a mill John. Despite the value of your java tutorials, they're actually quite entertaining.
@davidkopec944210 ай бұрын
You are an awesome teacher and code writer. Thank you.
@daurtk2 жыл бұрын
I so enjoy your videos John. Every time like illumination. So clear, concise but comprehensive. Thanks a bunch!
@CodingWithJohn2 жыл бұрын
Awesome, thank you!
@xetbytetechnology14452 жыл бұрын
Top notch video over the internet! I am really appreciate it! Sir, where from are you?
@yassermouhajir84623 жыл бұрын
Thank you very much for taking the time to explain this subject in such a magnificent way.
@ernestoc.d.18682 жыл бұрын
That final part about the finally behaviour was quite interesting.
@InvinciRD Жыл бұрын
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
@waleedffx2 жыл бұрын
Your video is very informative, thank you for taking the time to help all who need java help
@chilipismysignature50312 жыл бұрын
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.
@ArielLegoAndMore Жыл бұрын
better than my java teacher, awsome video!
@OsmanPazarlama314 күн бұрын
Johnny Sins explains Java in best way . appreciate thank you mr sins.
@dejene86252 жыл бұрын
John, thank you for your simplified explanation.
@Garrison862 жыл бұрын
Amazing! thank you for taking your time in all your videos, it really helps!
@protector4286 Жыл бұрын
bro my uni uploads shitty presentations and if youve missed something tough shit. thank god for your channel.
@CHIRONJEETB73 жыл бұрын
Thank you John for all the videos, exceptional explanations.
@Molotom3 жыл бұрын
Thanks for the video! It's fun to learn about fringe cases like the return statement in finally :)
@hameheroj4030 Жыл бұрын
Guys, you can forget all these videos out there and just watch this one. Everything is fine explained here!
@jeebeefy98782 жыл бұрын
Very clear explanation. This man is a god!
@sagarraut4794 Жыл бұрын
@coding with John...so understandable videos, please make one video on java wrapper classes and wrapped keywords
@michael_scarn_ Жыл бұрын
Thank you John, your channel is soooo coool! Hats off
@skyratclips62792 жыл бұрын
I learned more from this than my Java 1 college class.
@Meppoy Жыл бұрын
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.
@tanmaykolase20988 ай бұрын
You are simply genius!🙌🏻
@mikram622 Жыл бұрын
John sir,your way of explaining is really nice. please guide how i become a good coder like you
@LBCreateSpace10 ай бұрын
Excellent video that makes this crystal clear
@Coccoutube2 жыл бұрын
You're a great teacher John; thanks for sharing you're knowledge with us :)
@リンゴ酢-b8g2 жыл бұрын
All objects within the Java exception class hierarchy extend from the Throwable superclass. Only instances of Throwable (or an inherited subclass) are indirectly thrown by the Java Virtual Machine (JVM), or can be directly thrown via a throw statement.
@harshsrivastav2197 Жыл бұрын
You really make me want to learn Java
@jamilxt3 жыл бұрын
Very helpful & crystal clear explanation. Thank you.
@rachealiperu93752 жыл бұрын
Your videos are really really good and easy to understand, thanks a lot
@themattster19892 жыл бұрын
Subbed and liked, this guy is great at explaining, Thanks John.
@manar24042 жыл бұрын
you explained it better than two-hour class, can you explain GUI components
@secretsorcerer3 жыл бұрын
Thank you very much Sir You're a great teacher Thanks for the last example Cleared all my doubts
@muhammadzubair9573 жыл бұрын
Thankyou John. Good Explanation, Please Make more videos on Servlet,JSP,Spring,SpringBoot,Hibernete.
@pavankumarn27752 жыл бұрын
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
@benatakaan6132 жыл бұрын
Man, your content is just amazing! Thank you so much! 🙏
@avinashtadi8569 Жыл бұрын
Thanks. I appreciate the easy of explaining the concept
@mahbod959 ай бұрын
soo clean, clear and concise. Thank you.
@Stl713 жыл бұрын
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.
@aidancurtis65813 жыл бұрын
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
@manavneekhra52762 жыл бұрын
To the point videos. Keep making good content John.