If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h
I learn so much more here than in my actual class that now class is just a place to receive homework and I learn to actually solve the questions here . Thanks Alex !!
Same!! I feel like my teachers just tell me to write the code and don't explain why we actually use it but this video actually explained this so much so thank you Alex! I'll be watching your videos more often now.
Alex, I am currently in a beginners programming class. I have learned more from your videos than my textbook and teacher combined. Thank you for your teachings and for distributing your knowledge, you are a true god send.
My new favorite RUclipsr! You always explain everything in such a easy way that even the hardest things become easy after watching your tutorials! You deserve MORE subscribers and likes.
This video was great as I never even knew about switches before I watched it. One thing I would have added was how to make multiple cases output the same thing without having to copy and paste it multiple times. For example, instead of having code like this: switch(objectSize) { case "hammer": System.out.println("Small Object"); break; case "axe": System.out.println("Small Object"); break; case "computer": System.out.println("Medium Object"); break; case "backpack": System.out.println("Medium Object"); break; case "desk": System.out.println("Large Object"); break; case "shelf": System.out.println("Large Object"); break; } You could simplify it like this: switch(objectSize) { case "hammer": case "axe": System.out.println("Small Object"); break; case "computer": case "backpack": System.out.println("Medium Object"); break; case "desk": case "shelf": System.out.println("Large Object"); break; }
Thank you for making life easier by explaining Java. I have been watching your videos for one week and still going! My new year into 2021 is to learn Java with you. I have given up few times trying to learn java, but with your videos, I am self-motivated to sit and watch through your videos without being overwhelmed. So happy I came across your channel. Your truly a Savior! Thank You a million times, and Subscribed. I recommend your Java videos to anyone who is interested. Much love from NYC!
Thank you Alex. I’m trying to learn Software Development in my spare time. I’m a complete beginner. I’ve nearly given up a few times. Your videos are immensity helpful and one of the greatest resources I’ve found. THANK YOU ☺️
I realized that you can also put if-else statements in these cases and default. That's what I did when I can't put less than or equal and greater than or equal statement on cases. I put it inside of an if statement which is inside of a case statement. And it actually work.
OMG this Saved my life, thank you Sifu Alex Lee! I hope your channel grows prosperous, you're honestly way better at teaching than my professor! I understood everything in your 9min video vs a 3 hour lecture at night.
thanks dude this helped me a lot! i had a program where you make ur own math test and then you are able to take that test, but you could also do it in different languages. it was 2500 LINES OF CODE. but I cut it down with the switch.
Thank you so much Alex you are doing great works for the world community. I had trouble understanding JAVA but since I found your videos I'm back studying it again. Thanks a lot again.
This just made me understand switch looping more easier than my classes. Thanks a lot and keep the good work up so students like us can understand stuff easier :)
The reason I came here is because I saw something like: case 1: case 2: break; case 3: case 4: break; and I was wondering exactly how it works. Seems to me like this could be used to replace endless OR operators in your if/else statements because it will do something for 1 or 2 and something else for 3 or 4, right?
First off u r a great teacher. Second off I have a project that uses switch case to remove the vowels in a scanner but I keep getting an error because I compare an integer to a string. So I can't get it to work. I can probably ask my teacher but I was wondering if u could make something like this as a topic for a video. Thanks in advance.
Thanks, can you set multiple values for the same output, say in your last example you want to print out "small dog" if the value matches "pomeranian", "pug", "beagle" would it look something like switch(dog) { case "pomeranian, pug, beagle": System.out.println("small dog"); break; ##etc## } or would the syntax be: case "pomeranian", "pug", "beagle"
Do switch case statements only work for == operators and equals() methods? Like is there a wya to implement the , and other comparative operators for integers?
If you’re new to programming but want a career in tech, I HIGHLY RECOMMEND applying to one of Springboard’s online coding bootcamps (use code ALEXLEE for $1,000 off): bit.ly/3HX970h
I learn so much more here than in my actual class that now class is just a place to receive homework and I learn to actually solve the questions here . Thanks Alex !!
Same!! I feel like my teachers just tell me to write the code and don't explain why we actually use it but this video actually explained this so much so thank you Alex! I'll be watching your videos more often now.
hahahahahhaha SAAAMEE free days are good days cus i actually learn more on my own
Just started coding bootcamp and my teacher is doing the same thing!
Great!
@@catrieltorrez2450 you pop
Alex, I am currently in a beginners programming class. I have learned more from your videos than my textbook and teacher combined. Thank you for your teachings and for distributing your knowledge, you are a true god send.
My new favorite RUclipsr! You always explain everything in such a easy way that even the hardest things become easy after watching your tutorials! You deserve MORE subscribers and likes.
Yes you are saying the truth
Alex I just want to thank you for making these videos. You have the best content about Java for me.
I am so proud that ur not giving up man. I watch every vid... Thx man u deserve more subs and violence
1cps2 thank you so much! I try my best :)
Violence??
You mean audience or something?
You meant 'audience' I suppose? Bro don't wish Alex bad, he's a cool guy XD
Broooo in less than 10 minutes Alex explained switch statements better than my professor who took like a whole lecture to explain it.
I'm a first year doing java, thanks a million for all that you do
I am now learning the java from beginning only from your tutorial bro...thanks man...u doing great
I don't know what I would do without you man. Keep up the good work!!!
Thanks, came for a refresh, you forget sometimes. Good teachers like you are rare
This video was great as I never even knew about switches before I watched it. One thing I would have added was how to make multiple cases output the same thing without having to copy and paste it multiple times.
For example, instead of having code like this:
switch(objectSize) {
case "hammer":
System.out.println("Small Object");
break;
case "axe":
System.out.println("Small Object");
break;
case "computer":
System.out.println("Medium Object");
break;
case "backpack":
System.out.println("Medium Object");
break;
case "desk":
System.out.println("Large Object");
break;
case "shelf":
System.out.println("Large Object");
break;
}
You could simplify it like this:
switch(objectSize) {
case "hammer":
case "axe":
System.out.println("Small Object");
break;
case "computer":
case "backpack":
System.out.println("Medium Object");
break;
case "desk":
case "shelf":
System.out.println("Large Object");
break;
}
Thank you for making life easier by explaining Java. I have been watching your videos for one week and still going! My new year into 2021 is to learn Java with you. I have given up few times trying to learn java, but with your videos, I am self-motivated to sit and watch through your videos without being overwhelmed. So happy I came across your channel. Your truly a Savior! Thank You a million times, and Subscribed. I recommend your Java videos to anyone who is interested.
Much love from NYC!
how you doing now? :D
still on track?
The best person ive found at helping understand java and making it simple. Thank you man
Nice explanation. Finally understood switch statement!
Thanks for the upload bro. Man, you explained it better than my teacher lol.
DavyD thanks man, I hope you have a great day
this has helped me understand the switch control statements a little more better, thank you for highlighting this.
I was learning Java on W3Schools and the switch stuff confused me. This video cleared up everything that confused me thanks!
man the keyboard sounds so satisfying. Love it :)
Thank you Alex. I’m trying to learn Software Development in my spare time. I’m a complete beginner. I’ve nearly given up a few times. Your videos are immensity helpful and one of the greatest resources I’ve found. THANK YOU ☺️
Although I am new in this field, as far as I see you are the best. Great job! Please, never give up...
Getting me through Uni, Thanks for all the help!!
i love you bro i have a test tomorrow and its 11:15 pm and im still confused about switch case its completely clear now thanks so much
I realized that you can also put if-else statements in these cases and default.
That's what I did when I can't put less than or equal and greater than or equal statement on cases. I put it inside of an if statement which is inside of a case statement. And it actually work.
I love you dude!! Please don't stop teaching! ❤🔥🔥
You explain things very well, i just subscribed I hope your channel grows!
Juan M. Thanks Juan!!
thx man it realy helped more ppl should know about this chanel
Thanks, man you saved my midterm.
OMG this Saved my life, thank you Sifu Alex Lee! I hope your channel grows prosperous, you're honestly way better at teaching than my professor! I understood everything in your 9min video vs a 3 hour lecture at night.
thanks dude this helped me a lot! i had a program where you make ur own math test and then you are able to take that test, but you could also do it in different languages. it was 2500 LINES OF CODE. but I cut it down with the switch.
This was so helpful. I'm currently in an intro to Java case and this helped me so much!!!!!!
you deserve like a million subs.Thank you.I really appreciate this as one of my lessons
Thank you very much Alex Lee! i was confused with a tutorial. I found your video, you have helped out alot, thanks again!
I really like that you show a problem then u offer a solution . Thanks
It was really helpful to me sir. Thanks. Greetings from Biafra Land.
im watching all your videos and it's explaining literally all the lessons im going through
Thank you so much Alex you are doing great works for the world community. I had trouble understanding JAVA but since I found your videos I'm back studying it again. Thanks a lot again.
This made so much sense to me , easy to understand, thank you so much !
I learn so much more then in my class thank you so much teaacher
Thank you so much, your channel is helping me in every confusing moment!
I'm in love with your videos. Thank you very much Alex for explaining everything in the most simple way
Thank you sir alex
You helped me in such a small mistake
The greatest computer teacher of the world
Thanks man, your tutorials are short and clear.
you are a very gooooood teacher. you deserve more subscribers
Thanks I really needed this!
Thx for awesome tutorial helped a ton in my exams
thanks alex lee for such a sweet and wonderful explantion. Now i am so clear with java programs :)
Now I have the confidence to open my assignment on switch. Thanks Bro
Thanks for this video, very clearly explained.
Honestly love the way you explain what your doing in these tutorials. Really good!
wow this tutorials is easy to understand as always
very very helpful !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
I actually understand how to do this. I have test next week and I think I'll get an A because of you!! Thank you so much!
Your videos are really helpful, thank you :)
your a genius. This helped me so much!!!
This just made me understand switch looping more easier than my classes. Thanks a lot and keep the good work up so students like us can understand stuff easier :)
thanks, bro! keep it up! I've always watching your videos.
thanks bro . I like your work keep doing it .
Please keep this up, I subscribed!
Thank you for the videos! They help a lot in my bootcamp 🙌
Great Explanation thank you for the video!
Thanks for the video, it was helpful :)
Thank you a lot for what u're doing. u are our hero! u really help us as student
Thank you Alex. i really like your tutoring style very simple and clear.
u ar the best teacher on earth
Another helpful video for me, thank you so much for making this video❤❤❤
great definition and nice concept sir love you and proud on you
very good videos!! i understand better here than in my classes
Really helpful for my understanding. Thanks
thank you sir for making youtube videos 💜 God Bless you
Great and simple tutorial
I learn so much here ,Thanks
alex: "Colons arent used too much in programming"
python devs: "Excuse me, what did u say"
The reason I came here is because I saw something like:
case 1:
case 2:
break;
case 3:
case 4:
break;
and I was wondering exactly how it works. Seems to me like this could be used to replace endless OR operators in your if/else statements because it will do something for 1 or 2 and something else for 3 or 4, right?
You’re a great human being thank you so much for your help!
You got a new subscriber,dude.
This was very helpful for me, thank you!!
Thank you so much sir! I've learned a lot!
Youve really switched my opinion on the case of switch case, in switchcase I would like to thank you;
break;
Hey Alex, nice video btw! I have a question. What keyboard brand are you using? It looks so cool.
Wenn typing System.out.println(....), you can use the shortcut Syso + press ctrl+space + enter
i know, im late to the party tho
First off u r a great teacher. Second off I have a project that uses switch case to remove the vowels in a scanner but I keep getting an error because I compare an integer to a string. So I can't get it to work. I can probably ask my teacher but I was wondering if u could make something like this as a topic for a video. Thanks in advance.
Thanku bro you help us very much please make more videos I really appreciate you from my heart
Love your videos keep up the good work !!
Thanks 🙏 for the wonderful teaching, I will be really proud to be your student
Great video, thank you!
Bruh thanks you helped me on my last day of the assignment I received from the school🤣🤣🤣
give this man a mil viewers
Nice video...thnk u....i totally understood it
Thank you Alex!
thank you!! you help me a lot with this video!!!
thank you bro this helped me a lot
Great video!!
Great Vid; I would prefer “if-statements” and “if” needed convert to “switch- statements” to cleanup or concise the code. IMHO! If that makes sense.
Thanks for the video it's really helpful
Thanks, can you set multiple values for the same output, say in your last example you want to print out "small dog" if the value matches "pomeranian", "pug", "beagle"
would it look something like
switch(dog) {
case "pomeranian, pug, beagle":
System.out.println("small dog");
break;
##etc##
}
or would the syntax be:
case "pomeranian", "pug", "beagle"
That was really useful , thanks
Thanks for this video!
Do switch case statements only work for == operators and equals() methods? Like is there a wya to implement the , and other comparative operators for integers?
You're a lifesaver! Thanks! 👏👍