Alex Lee
Alex Lee
  • Видео 130
  • Просмотров 26 696 570
Throw And Throws In Java Tutorial #48
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h
In this video, I show you how to use throw and throws in java! The Java throws keyword goes at the top of a method and says what exceptions it might throw! Throw on the other hand, goes in the middle of a method and gives you the power to throw an exception manually!
I hope you enjoyed this tutorial on throw and throws in java!
Full Java Tutorial For Beginners Playlist: ruclips.net/p/PL59LTecnGM1NRUyune3SxzZlYpZezK-oQ&si=6OSbyiJxFsTjqL_9
Free Tips: bit.ly/3U6HXcb
Disclosure: The Springboard link provided is linked to my affiliate account & supports the channel.
~
Alex Lee...
Просмотров: 28 914

Видео

Map In Java Tutorial - Map And HashMap In Java
Просмотров 16 тыс.11 месяцев назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to use a Map in Java! A Map and HashMap in Java are objects that store data in a format with keys, and values. One key has a corresponding value. In this example, one jersey number for a basketball team, has one player with that number. I hope ...
Java Multiple Choice Quiz Program Tutorial #31
Просмотров 19 тыс.11 месяцев назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this Java program example for beginners, I show you how to create a Java multiple choice quiz program! This Java program example will ask the user 3 questions, get input from the user, and return their quiz score out of 3! The trick here is to store the input from the us...
Double In Java - Double VS Int
Просмотров 8 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to use the double in Java! A double is just a variable that lets you use decimal points! The int variable is for whole numbers (integers), and the double is the most precise variable type in Java for storing decimal points. There are some quirk...
Static Method In Java Tutorial #76
Просмотров 30 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to use the static method in Java! I show you what that weird "static" word means and how to call a static method vs a nonstatic method! This was so confusing to me at first, but hopefully, this tutorial helps you :) I hope you enjoyed this stat...
public static void main(String args) In Java - What is String args?
Просмотров 11 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you what String[] args means in the main method: public static void main(String[] args) {} String[] args is just a variable you can use in the Main method! It's an array of Strings that gets passed through the main method when it gets run. There are a ...
How To Call A Private Method In Java (And Access From Another Class)
Просмотров 11 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to call a private method in Java both from the same class and a different class! A private method in Java means that the method can't be used outside of the class it's in, but I found a neat workaround that will let us do that! I hope you enjoy...
Springboard Coding Bootcamp Review - Is It Worth It?
Просмотров 15 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I review the Springboard Software Engineering Bootcamp (AKA Springboard Coding Bootcamp), however, this will apply to all other bootcamps they offer as well. This review is based on my 2-week experience with the bootcamp, mentorship call, and student intervie...
Method Overriding In Java Tutorial #94
Просмотров 32 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to override a method in Java and show you what method overriding is! Java method overriding just means subclass methods replace the superclass methods if the object is set up using the subclass constructor. I hope you enjoyed this method overri...
Method Overloading In Java Tutorial #93
Просмотров 26 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to use method overloading in java! Method overloading in Java means you can have many methods with the same method name but different values in the parenthesis (parameters). They can be different types, or have a different amount of parameters....
How To Import A Class In Java From The Same Package - Java Tutorial
Просмотров 9 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to import a class in java from the same package! You actually don't even need an import statement, because an import statement in java brings in code from a different package. Since the other class is in the same package, you can just go ahead ...
Iterator Java Tutorial #68
Просмотров 42 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to use the Java iterator! If you have a collection object like an ArrayList, HashSet or HashMap, you can use .iterator() to create an java iterator object and loop through it and remove values! I hope you enjoyed this Iterator Java Tutorial! Fu...
How To Get Array Input From A User In Java Using Scanner
Просмотров 61 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to get several inputs from a user and store those values into an array! Just use the Scanner object to get several different pieces of input from the user and set each value of the array to each value the user enters (it could be a string, int,...
How To Import A Class In Java From Another Package or Project - Java Tutorial
Просмотров 39 тыс.Год назад
$1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h In this video, I show you how to import a class in java from another package, or even from an entirely different Java project. It's super easy, just use the import statement at the top, and if it's in a different project, go to the build path and add the Java project to the...
Brain.fm Review - My Secret Productivity Hack for 2022
Просмотров 67 тыс.2 года назад
Brain.fm (20% off): brain.fm/alexlee20 $1,000 OFF ANY Springboard Tech Bootcamps with my code ALEXLEE. See if you qualify for the JOB GUARANTEE! 👉 bit.ly/3HX970h I hope you enjoyed my Brain.fm review, truly my favorite productivity app ever :) Disclosure: Brain.fm and Springboard link provided is linked to my affiliate accounts & supports the channel.
HLTH Code Review - The World's HEALTHIEST Meal Replacement
Просмотров 12 тыс.2 года назад
HLTH Code Review - The World's HEALTHIEST Meal Replacement
Why I Stopped Making Java Tutorials
Просмотров 114 тыс.2 года назад
Why I Stopped Making Java Tutorials
Q&A
Просмотров 17 тыс.3 года назад
Q&A
If you hate school, this might help
Просмотров 190 тыс.3 года назад
If you hate school, this might help
Initialization, Declaration and Assignment in Java #54
Просмотров 56 тыс.3 года назад
Initialization, Declaration and Assignment in Java #54
Why I use light theme
Просмотров 34 тыс.3 года назад
Why I use light theme
Array of Objects Java Tutorial #73
Просмотров 157 тыс.3 года назад
Array of Objects Java Tutorial #73
DINOSAUR BATTLE PROGRAM - LIVE SPEED CODING IN JAVA (5 MINUTES!!!)
Просмотров 17 тыс.3 года назад
DINOSAUR BATTLE PROGRAM - LIVE SPEED CODING IN JAVA (5 MINUTES!!!)
Logical Operators In Java #20
Просмотров 64 тыс.3 года назад
Logical Operators In Java #20
Java Method Chaining Tutorial #85
Просмотров 42 тыс.3 года назад
Java Method Chaining Tutorial #85
Polymorphism In Java Tutorial #92
Просмотров 340 тыс.3 года назад
Polymorphism In Java Tutorial #92
Java String Comparison Tutorial (Equals vs == in Java)
Просмотров 88 тыс.3 года назад
Java String Comparison Tutorial (Equals vs in Java)
Inner Class Java Tutorial #81
Просмотров 50 тыс.3 года назад
Inner Class Java Tutorial #81
Java Conditional Operator Tutorial #64
Просмотров 52 тыс.3 года назад
Java Conditional Operator Tutorial #64
Typing Speed Java Program - Calculate WPM #60
Просмотров 33 тыс.3 года назад
Typing Speed Java Program - Calculate WPM #60

Комментарии

  • @dylanpene1638
    @dylanpene1638 2 часа назад

    The mouse example was Perfect

  • @Only.gmail_
    @Only.gmail_ 2 часа назад

    USA is even worse than China. In China at least you know, what they want you to follow. In USA it's all a mess.

  • @ghupotkpikacha3691
    @ghupotkpikacha3691 2 часа назад

    My exam's tomorrow and I've learned more from this first 12 videos in a day compared to trying to understand my tutor for the past 5 months🥲

  • @ashikgurung1236
    @ashikgurung1236 4 часа назад

    The best teacher

  • @SuryakantDaud
    @SuryakantDaud 5 часов назад

    AlexLee Superb Explanation Brother ❤👍🏻 😞Just do Start again Making videos

  • @maniejacsherin3123
    @maniejacsherin3123 7 часов назад

    /* coment */

  • @osamugaming1807
    @osamugaming1807 День назад

    If you are using Windows and it seems there's an Exception showing up in String path just change the \ backslash to / forward slash

  • @Apixelatedhedset
    @Apixelatedhedset День назад

    Searching up my race and got this

  • @JusticeRicksUWG
    @JusticeRicksUWG День назад

    bro just casually makes my life easier and saves my gpa!

  • @Chris-nq3ri
    @Chris-nq3ri 2 дня назад

    Bro I learned java first fall 2019 before covid and failed brutally but u have great inspiration bro ty

  • @StevenRafael268
    @StevenRafael268 2 дня назад

    Thank you so much for this super useful video! this saved my butt with my assignment haha

  • @masontheredrabbid6611
    @masontheredrabbid6611 2 дня назад

    I know that school is part of life, but I change my mind that school is not part of life. School is part of hell.

  • @doictbarguna2266
    @doictbarguna2266 2 дня назад

    *I hate school so much*

  • @TheKillerman3333
    @TheKillerman3333 3 дня назад

    i probably need to figure out how to program a bajillion if statements.

  • @bakerboy44
    @bakerboy44 3 дня назад

    I love you (no homo)

  • @MystikLFT
    @MystikLFT 4 дня назад

    I need the basics of java for a subjech in my exam in uni I hope this helps

  • @ariesoliver77
    @ariesoliver77 5 дней назад

    2 years from now I'll back to this video, and say thank you💗💗

  • @jawedsadat9796
    @jawedsadat9796 5 дней назад

    I love the way you teach sir. Thank you!

  • @shauryasharma1023
    @shauryasharma1023 5 дней назад

    int x = randomno.nextInt(1,7); This code did the trick for me is it right?

  • @overanalyzings
    @overanalyzings 6 дней назад

    YO CHAT THIS GUY FUCKS

  • @christianfischer9971
    @christianfischer9971 7 дней назад

    Thank you for sharing! I was accepted today for the Software Engineering path. My employer is covering the cost.

    • @s.f.575
      @s.f.575 5 дней назад

      I just applied with my employer’s educational program. Hoping I get accepted!

  • @20ilincsh
    @20ilincsh 7 дней назад

    ❤❤❤I love your channel. You’re awesome

  • @odanielbotke
    @odanielbotke 7 дней назад

    Your dideos ar the best, thanks. What is the name of your keyboard?

  • @aboyiphilippa1136
    @aboyiphilippa1136 7 дней назад

    what if I have a large Java package with 4-5 classes ? I also sadly do not understand the bottom part of the javascript code you used.

  • @XXIV90
    @XXIV90 7 дней назад

    Its always been like that. Im so sick of being afraid of my parents when i fail in everything, but the thing is, you have to try. You have to.

  • @Frog_toes283
    @Frog_toes283 8 дней назад

    Bro.... I watched this cause I thought it was mincraft...

  • @smileyghostkat3068
    @smileyghostkat3068 8 дней назад

    Thanks!

  • @bharathabhi2951
    @bharathabhi2951 8 дней назад

    Constructor basically creates an object - That line took off all the confusion. Thanks Alex.

  • @JA-nh1cn
    @JA-nh1cn 8 дней назад

    this is literally the best channel to learn Java

  • @gamerneutro3245
    @gamerneutro3245 8 дней назад

    your explanation was wayy so simple, thanks a lot for that

  • @user-vu5cv2tn1v
    @user-vu5cv2tn1v 8 дней назад

    Hi sir, is the interface kinda outdated, I just want to ask is it true that for interface now, we can use abstract as well as non-abstract methods?

  • @Aadityaadhikari63
    @Aadityaadhikari63 9 дней назад

    I will be using strings when making fill in the blanks on a code, like this.

  • @ringilgondolin7490
    @ringilgondolin7490 9 дней назад

    I follwed this video editing my MadLibs project, and I think it might be worth sharing: import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("Enter hero name"); String mc = scan.nextLine(); System.out.println("Enter "+mc+"'s weapon."); String item = scan.nextLine(); System.out.println("Enter an attack that a "+item+" can be used to make.(in past tense)"); String action = scan.nextLine(); System.out.println("Enter the name of "+mc+"'s mortal enemy."); String enemy = scan.nextLine(); System.out.println(mc +" "+ action +" a "+item+" at "+enemy+", causing great harm."); } }

  • @Lesyzero
    @Lesyzero 9 дней назад

    فهمت كل شي بالفديو الا انك حاط وجهك ?

  • @deepakharish3821
    @deepakharish3821 9 дней назад

    thank you bro ur explaination and way of searching method super cool and im learn a lot from your channel......

  • @topperexam1826
    @topperexam1826 10 дней назад

    system. Out.println("i love cat",+i).then out put is what

  • @gameour7892
    @gameour7892 10 дней назад

    Thanks bro ❤

  • @tuztuz731
    @tuztuz731 10 дней назад

    are you a real person or a vampire or a puppet

  • @PraviLukijanJC
    @PraviLukijanJC 10 дней назад

    I built a functioning computer in minecraft with binary.

  • @hungarianmodel9465
    @hungarianmodel9465 10 дней назад

    You are hands down the best

  • @creativeshakeeb7996
    @creativeshakeeb7996 10 дней назад

    your video is being used in my university to teach us.

  • @one_and_one_makes_ten
    @one_and_one_makes_ten 11 дней назад

    "JI YOU AI " ❌ "GOOEY" ✅

  • @Aadityaadhikari63
    @Aadityaadhikari63 11 дней назад

    I have never heard of escape characters before until I saw this video, its probably because new to java.

  • @Aadityaadhikari63
    @Aadityaadhikari63 11 дней назад

    I will be using comments in the future because it can help me disable the codes I don't need at the moment.

  • @nftdealer5730
    @nftdealer5730 12 дней назад

    you did an amazing job... thanks

  • @GraceBeatty-up2ry
    @GraceBeatty-up2ry 13 дней назад

    which coding platform do you use?

  • @tochukwubenson5211
    @tochukwubenson5211 13 дней назад

    🐐🐐

  • @shamilamanomisenevirathna6506
    @shamilamanomisenevirathna6506 14 дней назад

    Thank You very much for your valuable videos.

  • @einstien2409
    @einstien2409 14 дней назад

    This is pretty well done tbh. However, its only useful if you know some of it already.

  • @kadyhuria2964
    @kadyhuria2964 14 дней назад

    Very helpful to new coders out there like ME! Thanks, Alex!!