I wil tell my children that you are the reason they have food.
@edgarcalochcampos19304 ай бұрын
lol
@karthikgururajan113125 күн бұрын
lmao
@kerminayoussef471110 ай бұрын
I thought I am no good in programming and I thought I hated it. But you made it so simple and I see tremendous progress. Thank you much!
@eshwarnag Жыл бұрын
yet again, the last part was illuminating. many videos, I click them open some of these videos thinking, I know all this, but I will always find something that I didnt know
@parthdsoni2 жыл бұрын
Hey John!! Your explanation is always to the point.. as 5 years of experience developer in Java technologies, I really enjoy your videos men.. I watch your videos to brush up my core knowledge.. keep up the good work buddy.. THANKS 🙏
@ttchannel21832 жыл бұрын
kzbin.info/www/bejne/q6ewoouej7eSoJY 桶神流出LOL
@ductamnguyen82572 жыл бұрын
What an inspiration. Hi, I'm Tam a Medior Java Developer from Vietnam. Nice to meet you. Thanks god that I found your videos.
@p0pka_enotaАй бұрын
Very entry level explanation. Honestly from an elite software engineer, I expected something like when to use checked vs unchecked, design considerations, recommendations, etc.
@wieneroach22803 жыл бұрын
absolute legend, i am 13 and i started coding 1 week ago, thanks
@kazaakas Жыл бұрын
Best explanation I've seen anywhere. Whether for beginners, or senior engineers coming from different langauges.
@sategie2 ай бұрын
Old but Gold! This is the best explanation of Exceptions I have ever heard! Thanks a lot for this!
@jamilxt3 жыл бұрын
8:33 In Java, RuntimeException & all of it's subclass exceptions are "Unchecked Exception". Any exception isn't a RuntimeException is "Checked Exception", including "Exception" class.
@abdullahsaid47652 жыл бұрын
Just in one sentence and Clear 😀
@jamilxt2 жыл бұрын
@@abdullahsaid4765 Yeah. ^_^
@pranavnyavanandi97102 жыл бұрын
It's wierd though, why would it check for some exceptions and not check for other exceptions? It checks for FileNotFoundException but not NullPointerException - why?
@jakubdudek41332 жыл бұрын
@@pranavnyavanandi9710 Hey, good question. I am still learning Java so I am not THAT sure of my words but by logical point of view there are these 2 typs of exceptions mainly because CHECKED EXCEPTIONS are much higher in terms of failure risk of application. On the other hand UNCHECKED EXCEPTIONS like NullPointer have lower risk of failure and are mostly caused by programming mistakes.
@zeppelinmexicano11 ай бұрын
@@pranavnyavanandi9710you probably found the answer to your question about why Java doesn't check for all exceptions at compile time? If not, it's because the compiler cannot possibly discover how you are going to munge a number, for instance, at runtime and create a NumberFormatException. Especially if there is user input during runtime where the user can type in garbage, there is no way a compiler will ever see that future event, right?
@ndk81112 жыл бұрын
Brilliant. For once I grasped it. “Checked e” - is checked at compile time and extends Exception, it needs to be caught or throws to go away. In contrast, “unchecked e” extends Runtime exception and are not checked by compiler during compilation.
@leander41510 ай бұрын
Code with John is the alltime java GOAT!
@flytoinfinityvivi8 ай бұрын
Best java videos ever! No hard to understan jargon terms. I always watch your videso before I even delve into the subject and I still manage to understand all of it. Please keep up the good work (:
@ljront31265 ай бұрын
I am a trainee of Java-language's course and i enjoying the distending explanations' videos of your channel. They are enriching and developing :D
@SarahRahim-e1y4 ай бұрын
This is a very clear explanation of checked and unchecked exception concepts
@StefanStefanov Жыл бұрын
Thank you so much!!! I had this question on an interview, was not prepared so detailed fot it, but after watching the video, I am more confident! Thank you again and looking forward for another video!
@ujeshnada51412 жыл бұрын
Learning point. Checked exception = Checked during the compile time and throw compilation error if we have not handled them. Unchecked exception = compilation will pass successfully but expect to have runTimeException. 1. RuntimeException and its subclasses are unchecked, everything else is checked. 2. I can throw RuntimeException without any compilation error. So, whenevery we throw that remember to catch it somewhere in code.
@asdakak6141 Жыл бұрын
10 mins video explains better than my 2 hour confusing lecture and ppt lol!
@JollyFrogGaming2 жыл бұрын
I really enjoy watching your videos. Your explanations are so much clearer than the ones in my sourcebook. You've helped me a lot over these last few months. Thank you.
@alexzink44519 ай бұрын
Hello, John! I love ur lessons. U'd really make my day if u talk about supressed exceptions 🙏
@luisdawa2 ай бұрын
Best explanation I've ever seen on this topic. Thank you very much!
@robertb53572 жыл бұрын
You are the greatest. Your explanations are so crisp and precise. Kep up the great work
@alexman1283 ай бұрын
This guy is so good at explaining! Kudos!
@rajatchaturvedi63932 жыл бұрын
Your videos are soothing to watch....I can understand in one go...it gives me more clarity then before
@mohamednibras532 жыл бұрын
Simple and crystal clear explanation
@sanchitsingh70893 жыл бұрын
hands down best explanation out there
@manar24042 жыл бұрын
you explained it better than two-hour class, can you explain GUI components
@angurishudesu2 жыл бұрын
Notes for myself: Exceptions are errors in the program basically, you have to deal with unchecked and checked exceptions by try catch blocks basically Difference between checked and unchecked exceptions is that JAVA doesn't CHECK to make sure you're dealing with exceptions at compiled time for unchecked exceptions Any exception that isn't a runtime exception and all subclass of it are CHECKED exceptions - Checked exceptions are CHECKED by java before compiling successfully (in the code itself) - Checked exceptions give compiling errors In java, the __runtime exception__ and all subclasses of it are UNCHECKED exception - Runtime exceptions dont give compiling errors - You wouldnt see it in the compiling stage, only after compiling
@yasminaitmaksene5230 Жыл бұрын
Hey John, Your videos and explanations are by far the best i've ever watched ! Thank you so much for sharing your knowledge.🙏
@chenioq Жыл бұрын
same thoughts!!
@andromilk2634 Жыл бұрын
Please do more videos, your explanations are very clear and I love them.
@aquilhall26210 ай бұрын
Thank you again for such a clear cut explanation with good examples!
@powertester5596 Жыл бұрын
Your videos are “Exception-al” ❤. Keep sharing 🙏😊
@ndk81112 жыл бұрын
The best explanation ever. I finally got it.
@railroadman2k5 ай бұрын
Thanks Java creators for this shot in the leg
@Dzikrullah_999 Жыл бұрын
Amazing explanation. You are a gifted teacher brother
@sivakrishnat54712 жыл бұрын
This is great stuff. You explained it like no other. Your voice clarity and intonation is amazing.
@IgnacioJimenez-nc3tn2 жыл бұрын
best java you tuber by far thanks for everything!
@foivosstamopoulos9709 Жыл бұрын
Awesome tutorial John! At last one clear explanation for this difference!
@PedrovoriskAB3 жыл бұрын
Thank you John !!! As always amazing content.. !!!
@nadiam.mirzai473911 ай бұрын
Hey John, Thank you for the clear and concise explanation!
@obayismaeel76582 жыл бұрын
your videos just don't ever disappoint
@omarnoor42492 жыл бұрын
Brilliant explanation. Thanks for all your efforts in teaching us Java. Wishing you and your family all the best in your life.
@pawloszeyede57872 жыл бұрын
You're good at teaching bro. Seriously. Thanks.
@MrIkerian2 жыл бұрын
Thank John finally an easy way to understand this topic.
@alonsomoslie83952 жыл бұрын
Man you are good so clear and understand. Thank you for your time and work
@ishangogna2147 Жыл бұрын
Man, you are a wizard. I never comment, but thank you! Your videos have been helping me significantly at work :) Liked and Subscribed!
@Disax3 жыл бұрын
You explain these topics very good. Thank you for your effort.
@lankanathdiaspitawalage7783 Жыл бұрын
Fantastic explanation. So precise. Thank you John
@tolstoievski49262 жыл бұрын
For people who wants to read interesting book about java design software, I would recommend "Refactoring : Improving the design of existing code".
@benmyths9 ай бұрын
brilliant lecture.. especially that exception hierarchy which you explained
@giannyM2 жыл бұрын
Its amazing how much we learn from your videos. Thanks a lot
@tetianadenchyk1345 Жыл бұрын
Thank you a lot, John, for your explanations, they are so structured and clear! I am glad to find your channel here :)
@KCODivyanshuKatyan2 ай бұрын
crystal clear explaination
@rony118882 жыл бұрын
Hey John! Your way of elaboration is simply awesome , keep that good work for community
@zjuzhanxf2 жыл бұрын
This is crystal clear!! John you are a great teacher!
@idomoshe60402 жыл бұрын
What a superb channel. Thank you!
@softvijay2 жыл бұрын
Great & to the point, I have watched some of your other clips also, It is really quick take away, Keep it UP !!!, God Bless
@KevinRodriguez-mx1vj2 жыл бұрын
Awesome video. Always had a hard time wrapping my head around exceptions, it makes much more sense now !
@zehrairkicatal21563 жыл бұрын
Wonderful explanation Thank you and the everything is explained in right pace
@hassanmehedi99032 жыл бұрын
I just subscribed watching your only this video for the first time.It was very helpful and clear for me.💝
@taurus-fu7rk2 жыл бұрын
Brilliant way of explaining java stuff. Awesome!
@cherryb91282 жыл бұрын
first video of your channel and i am subscribed! thank you for explaining it so well :)
@Jacob-uq4iz3 жыл бұрын
Been watching your vids to try to catch up for an exam. Definitely helpful! Could you do any vids on networking in java? Stuff like client/server, sockets, udp/tcp.
@sofiaandujar37942 жыл бұрын
Pleaseee
@vicente3j2 жыл бұрын
"Try to catch up"--I see what you did there :)
@nabanitabapari22962 жыл бұрын
@@vicente3j 😆
@yan-vn5oy Жыл бұрын
Super informative! Thanks for the explanation!
@kerwinso3 жыл бұрын
Another great video, thanks John! Makes things so clear. Anyone else pause the beginning of the video to check out John's game collection? 😄
@ManeelxAkosAdor2 жыл бұрын
Very useful video when you are Java beginner and want to make some db work
@Dmytro_Galak2 жыл бұрын
Thank you for this video. You are a great teacher.
@niravdaskubavat3282 жыл бұрын
You are sharing excellent knowledge in easier way. I just seen your video from suggestion but then I saw atleast 5-7 videos from channel immediately. Great way to explain things with code (btw which Eclipse theme do you use ????), things became easy to understand when a programmer see it with code prospective.
@Moses_coder Жыл бұрын
Great Explanation. Your videos are just on point...
@robertoenriquechavezrodrig7312 жыл бұрын
Amazing explanation bro, thank you so much, God bless you!
@DanielAzevedo942 жыл бұрын
Thank you kind sir for the very well made explanation.
@kattmohamed11152 жыл бұрын
thanks for the details and clear explanation
@julianmartinez41592 жыл бұрын
Thanks a lot John! Perfect explaination! Greetings from Argentina! :)
@ShermukhammadKarimov7 ай бұрын
Thanks for clear explanation.
@GabRiel-ce7jk2 жыл бұрын
Very well explained John, this video helped me a lot to better understand this topic :)
@mastershonobi1103 жыл бұрын
Again great vid. I recently finished a section on Exception. This was a very good synopsis. 🙌🏿🙌🏿🙏🏾
@リンゴ酢-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.
@HR-pz7ts Жыл бұрын
So it's basically compile time vs runtime exception comparison.
@sauravmaity46812 жыл бұрын
Thank you for this video. It was very informative and to the point
@nguyenhuy58032 жыл бұрын
thank you so much for this video. It's so helpful!
@dmitricherleto82343 жыл бұрын
Great explaination. Thanks a lot!
@chuckbaranoski61842 жыл бұрын
Another well explained video!
@sebon112 жыл бұрын
Lovely video as always!
@hamidaliyev43482 жыл бұрын
Hi John, thanks for amazing tutorials. Could you also make a tutorial on debugging with intellij?
@manveersingh58222 жыл бұрын
Thanks john, this video was so good ..
@brianyxchen2 жыл бұрын
Hey John -- really enjoy your videos. Are you planning on releasing any java design patterns videos (e.g. Factory, observer, etc) in the future? Would be very helpful! Thanks
@morolillyshean88162 жыл бұрын
The best explanation.
@ahmetkarakartal95633 жыл бұрын
thank you so much, it is so clear explanation
@codeZarathustra2 жыл бұрын
John You are the best.
@dypsking34142 жыл бұрын
All your videos are magnificent!!! Simple and easy to understand.. . . Could you please do one on Serialization & Deserialization
@emiliasavin64842 жыл бұрын
Hi John, java spring videos would much appreciated 😁
@matiasmoresi50402 жыл бұрын
Learned something? Yes! Enjoyed it? Sure! Thanks!
@jjjbrke38882 жыл бұрын
Great explanation: clear, simple, and straight to the point!
@Pacvalham2 жыл бұрын
public static void main(String[] args) throws Throwable { //I don't have to worry about try-catch-finally here! }
@adamlasry52252 жыл бұрын
Great teacher! Thanks a lot.
@raoufbenabdelwahed6362 Жыл бұрын
great explanation man !!!
@stephenweber332 жыл бұрын
Maybe I oversimplify. Started with an AppleII+. (Nowadays the IDE is a bit better.) ) I have checked exceptions are those that an IDE can find. And Unchecked exceptions are those that would generally require an IDE to be an AI coding for us... You have been hitting most of my internal thoughts somewhere in your video. Perhaps I am mistaken. Most of my life I just added print statements into the code and figured out where the error was based on which print statements returned or didnt return.
@lav46632 жыл бұрын
Me having the oop exam in 8 hours, also me binge watching this channel 🥳