Java 2D arrays 🚚

แชร์
ฝัง

ความคิดเห็น •

  • @BroCodez
    @BroCodez  4 ปีที่แล้ว +148

    public class Main {
    public static void main(String[] args) {

    // 2D array = an array of arrays

    String[][] cars = {
    {"Camaro","Corvette","Silverado"},
    {"Mustang","Ranger","F-150"},
    {"Ferrari","Lambo","Tesla"}
    };

    /*
    cars[0][0] = "Camaro";
    cars[0][1] = "Corvette";
    cars[0][2] = "Silverado";
    cars[1][0] = "Mustang";
    cars[1][1] = "Ranger";
    cars[1][2] = "F-150";
    cars[2][0] = "Ferrari";
    cars[2][1] = "Lambo";
    cars[2][2] = "Tesla";
    */

    for(int i=0; i

  • @RestedAura2
    @RestedAura2 ปีที่แล้ว +149

    To clarify those who don't understand what does cars.length and cars[i].length means, basically:
    cars.length: detect how many instances/objects are there in the row of the 2D array
    and
    cars[i].length: detects how many instances/objects are there in the column of the 2D array

    • @misfire32
      @misfire32 ปีที่แล้ว +3

      Thanks bro, the loop now makes sense to me, I didn't understand how the j int was smaller than the i int while they were both zero.

    • @hussinmomen5256
      @hussinmomen5256 ปีที่แล้ว +1

      thx bro

    • @maximizer174
      @maximizer174 8 หลายเดือนก่อน +2

      @RestedAura2 you mean the opposite right?
      cars.length : no of objects in column (vertically/ up to down) or Basically determine no of rows
      cars[i].length : no of objects in row (horizontally/ left to right) or Basically determine no of columns
      i was super confused on this topic. correct me if I'm wrong

    • @transfertransfer986
      @transfertransfer986 7 หลายเดือนก่อน +1

      ​@@maximizer174bruh, you got it mixed up. Columns are verticles (top to bottom)
      Rows are horizontal (left to right)

    • @maximizer174
      @maximizer174 7 หลายเดือนก่อน +1

      @@transfertransfer986 isn't that what i said? 😅

  • @JuliHoffman
    @JuliHoffman 2 ปีที่แล้ว +31

    I can't believe I understood this! You have excellent teaching skills.

  • @dolemerchant69
    @dolemerchant69 ปีที่แล้ว +5

    have been watching ur vids the last few weeks since starting CS in college. they’ve helped so much, thank you

  • @pavelkvasnicka6856
    @pavelkvasnicka6856 ปีที่แล้ว +8

    This is the best Java tutorial for beginners, so you can learn Java and English in one hit. Please keep going! I vote for Java advance tutorial. Thanks a lot Bro

  • @erneztoyo
    @erneztoyo 3 ปีที่แล้ว +209

    System.out.println("Great Video");

    • @Sssamaa-c8w
      @Sssamaa-c8w ปีที่แล้ว +20

      Boolean comment = true;

    • @godcomplex1929
      @godcomplex1929 ปีที่แล้ว +6

      If(comment = true)
      {System.out.println("Amen to that");}

    • @christiangalagar9213
      @christiangalagar9213 8 หลายเดือนก่อน

      ​@@godcomplex1929error

    • @lobitu3423
      @lobitu3423 6 หลายเดือนก่อน +6

      ​@@godcomplex1929 your comment is messed up

    • @nasirabdullayev972
      @nasirabdullayev972 2 หลายเดือนก่อน

      ​​@@godcomplex1929 comment== true

  • @dillonpaul1498
    @dillonpaul1498 2 ปีที่แล้ว +1

    best teacher ever.. good job bro

  • @honoredegg
    @honoredegg 2 ปีที่แล้ว +2

    2d arrays understood completely. 16th. Thank you, ma Bro Sensei!

  • @davidbolduc4378
    @davidbolduc4378 3 ปีที่แล้ว +1

    I love watching these videos before class.

  • @IceBeam93
    @IceBeam93 3 ปีที่แล้ว +20

    I did this with pokemon:
    public class Array2Ds {
    public static void main(String[] args) {
    String[][] pokemon = {{"Bulbasaur", "Ivysaur", "Venusaur"},
    {"Charmander", "Charmeleon", "Charizard"},
    {"Squirtle", "Wartortle", "Blastoise"}
    };
    //This also works but define it at the top already: String[][] pokemon = new String[3][3];
    // pokemon[0][0] = "Bulbasaur";
    // pokemon[0][1] = "Ivysaur";
    // pokemon[0][2] = "Venusaur";
    // pokemon[1][0] = "Charmander";
    // pokemon[1][1] = "Charmeleon";
    // pokemon[1][2] = "Charizard";
    // pokemon[2][0] = "Squirtle";
    // pokemon[2][1] = "Wartortle";
    // pokemon[2][2] = "Blastoise";
    for (int i = 0; i < pokemon.length; i++) {
    System.out.println();
    for (int j = 0; j < pokemon.length; j++) {
    System.out.print(pokemon[i][j]+ " ");
    }
    }
    }
    }

    • @BroCodez
      @BroCodez  3 ปีที่แล้ว +3

      nice! That's a good visualization

    • @d_36_priyanshuurwate65
      @d_36_priyanshuurwate65 2 ปีที่แล้ว +3

      i love pokemon too
      my code is little diffrent but thNK U BRO

    • @Micharl-w6i
      @Micharl-w6i ปีที่แล้ว

      love aesthetic code@@BroCodez

  • @medjl6083
    @medjl6083 4 ปีที่แล้ว +2

    This is important video for multi-dimentional array.

  • @uc8xo
    @uc8xo ปีที่แล้ว

    Bro it helped me tommorrow is my exam and was clulessly watching this now

  • @KazaarLotha
    @KazaarLotha หลายเดือนก่อน

    dude youre awesome, i really thought this was WAY more complicated :D

  • @ascar66
    @ascar66 ปีที่แล้ว

    Good video, thanks for sharing

  • @BrokenG-String
    @BrokenG-String 11 หลายเดือนก่อน

    Great vid, although it would have been nice for you to also include how you can access the data within a 2D array and why you would wanna use a 2D array in the first place.

  • @alexanderperez3974
    @alexanderperez3974 3 วันที่ผ่านมา

    Best channel ever!

  • @youngdumbguitarist5348
    @youngdumbguitarist5348 ปีที่แล้ว +1

    This is such a helpful and well explained video! Thanks!

  • @vedmahant7776
    @vedmahant7776 ปีที่แล้ว +1

    Thanks for the help man, this video helped me a lot.

  • @Clarara-is9li
    @Clarara-is9li 9 หลายเดือนก่อน

    Okay now its etched in my brain Thanks dude :)

  • @mycake1515
    @mycake1515 ปีที่แล้ว

    When I was watching your 2d array tutorial it reminded me of Inception and the concept of dreams within a dream. Sounds stupid but it actually works lmao.

  • @shyam.upadhyay
    @shyam.upadhyay 3 ปีที่แล้ว +1

    I have smashed that like button so hard, there is a hole is my screen now. Worth it!

  • @-omarabusnineh5174
    @-omarabusnineh5174 3 ปีที่แล้ว +1

    Thank u Ms.Bro, I'm from Jordan.

  • @cesara9747
    @cesara9747 3 ปีที่แล้ว

    Your tutorials are the best!

  • @bradleydeans192
    @bradleydeans192 3 ปีที่แล้ว +4

    Why have cars[i].length in the nested for loop? It doesn't seem to be necessary since it will always be the length of the array anyways. Side note: Love these tutorials, they have all been excellent!

    • @udayrajoriyaa
      @udayrajoriyaa 2 ปีที่แล้ว +8

      Yes it is not necessary if each row has same number of columns as number of rows, i.e. square array.
      Let's say if there are 3 rows total, and each row has 3 columns/elements in them, then cars.length = 3, which will work for this case.
      But, let's say if the array has 3 rows and 2 columns/elements in each row, this logic will break, since again cars.length will be equal to 3, and we know, the third column doesn't exist in any row. So, it's necessary to use cars[i].length as each row is a seperate array in itself.
      Also, each row can have varying number of columns/elements, which makes it extremely necessary to use the logic. For example consider this array:
      Tesla, BMW, Audi, Hyundai
      Mercedes, Volkswagen
      Range Rover, Buggati, Toyota
      First row has 4 elements, second row has 2 elements, while the third row has 3 elements.

    • @bibi.98x
      @bibi.98x ปีที่แล้ว

      @@udayrajoriyaa thanks for the great explanation!

  • @trickysachin
    @trickysachin 2 ปีที่แล้ว

    Awesome👏👏😊😊

  • @leeuwengames315
    @leeuwengames315 2 หลายเดือนก่อน

    great explanation just wondering if i want to make an extra row or colum without out replacing the existing ones how do i do that?

  • @dew6739
    @dew6739 2 ปีที่แล้ว

    Good job

  • @cristiangarciaperez7230
    @cristiangarciaperez7230 2 ปีที่แล้ว +2

    what is cars.length representive of? like does that mean that I increases until all letters of cars are met or until all the cars are met? thanks

    • @albertocasanovalaras3153
      @albertocasanovalaras3153 2 ปีที่แล้ว +3

      cars.length is showing the number of instances that there is on that row. In this case that would be 3. That's why the loop keeps going as long as 'i' is lower than cars.length.
      cars.length = 3
      'i' keeps increasing by 1 until it's no longer less than 3. So it goes like: 0, 1, 2. And then it stops, because 3 !< 3, it's equal.
      The same way, when you type it as cars[i].length, you are getting the number of instances on that column. On this example, that number is still 3, but if you added another row, it would be 4.
      Using this kind of loop, you make sure you're passing through every instance on your array. It's checking the length of every row on the first loop, and the length of every column on the nested loop.
      I hope this made sense, if you have any question, ask again and I'll try to clarify it.

    • @JusticeBeaver619
      @JusticeBeaver619 2 ปีที่แล้ว +1

      @@albertocasanovalaras3153 got it. But can you please explain why we use cars[i].length instead of just cars.length . The value is 3 in both cases

    • @jironamos7650
      @jironamos7650 2 ปีที่แล้ว +1

      @@JusticeBeaver619 Imagine as if he made a variable of Columns and Rows, and assigned the values to each, you could have called that variable in the place of using cars.lenght or cars[i].lenght, which essentially means, "if i is less than Columns" or "if j is less than rows"

  • @jasonfenstermaker4
    @jasonfenstermaker4 10 หลายเดือนก่อน

    You are getting me through QA class man

  • @fieldsfury
    @fieldsfury 3 ปีที่แล้ว

    Amazing video! Watching all of these to refresh and learn!

  • @jeyhunaliyev1765
    @jeyhunaliyev1765 3 ปีที่แล้ว

    Awesome 👏

  • @emachine003
    @emachine003 2 ปีที่แล้ว

    i have a java final Friday, so thanks for this video!

  • @relaxjam1952
    @relaxjam1952 7 หลายเดือนก่อน

    you are the best

  • @filip_g
    @filip_g 4 หลายเดือนก่อน +1

    bro!! What is your eclipse theme?? It looks perfect!! Do you know if there is IntelliJ equivalent?

  • @loopify3905
    @loopify3905 4 ปีที่แล้ว

    very nice explained

  • @DesiHabibi
    @DesiHabibi 3 ปีที่แล้ว

    AMAZING ! BEST TUTORIALS HANDS DOWN !

  • @coreywoodring3905
    @coreywoodring3905 9 หลายเดือนก่อน

    Great Job!

  • @noah77
    @noah77 4 ปีที่แล้ว +2

    Ooo nice, I wanted one of these.

  • @danchavyn
    @danchavyn 2 ปีที่แล้ว

    Your video helped me a lot! It was the only tutorial that solved my problem. Thank you!

  • @supernovic99
    @supernovic99 ปีที่แล้ว

    This video was so useful!!! Thank you Bro!

  • @percivalgebashe4376
    @percivalgebashe4376 ปีที่แล้ว

    Nice

  • @witecki_
    @witecki_ 2 ปีที่แล้ว

    bro where chalk up u been, it is so cool

  • @eugenemolchan5141
    @eugenemolchan5141 4 ปีที่แล้ว

    You are the best bro!

  • @soumelee5661
    @soumelee5661 2 ปีที่แล้ว

    cool cars bro

  • @yevgenomelchenko732
    @yevgenomelchenko732 ปีที่แล้ว

    Thanks for the lesson

  • @huuloc8719
    @huuloc8719 3 ปีที่แล้ว

    Nice.

  • @rr3nn638
    @rr3nn638 4 ปีที่แล้ว +5

    Nice quick and easy explanation. Great job!

  • @Nexxus808
    @Nexxus808 หลายเดือนก่อน

    I LOVE THIS GUY

  • @haykmanukyan5462
    @haykmanukyan5462 3 ปีที่แล้ว +1

    simple & great! thanks

  • @ByeBaybe
    @ByeBaybe 2 ปีที่แล้ว

    Bro, I literally type this out and I get a 1D aka a list. I've been thinking about this for at least 15 minutes without an answer.
    EDIT: Never mind. I'm a fucking moron. In the last line I wrote sysout + ctrl + space and that's 'System.out.println();' but I need 'System.out.print();'. The 'println' makes a whole new line for each bundle of text forcing the text into a list format. Holy shit I'm happy I'm a stubborn person and figured this out.

  • @mohamedwafik3493
    @mohamedwafik3493 3 ปีที่แล้ว +1

    👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏

  • @justinbanza4751
    @justinbanza4751 3 ปีที่แล้ว

    Thank you very much for this video

  • @NovaDiaries23
    @NovaDiaries23 4 หลายเดือนก่อน +1

    what happens when the arrays have to be inserted by the user instead of assigning the arrays

    • @sunlit-nonentity
      @sunlit-nonentity 2 หลายเดือนก่อน

      i know this is 2 months old; however, this is such a good question that a lot of beginners often ask and want to know.
      in order to allow a user to create and store their own values in an array, you have to ask yourself one question, “do you want the values stored permanently or temporarily?” meaning, if you want the user to be able to store files in an array they only access while they run their program a single time on your terminal window, then the answer is simple and to code it is even more intuitive and simple.
      HOWEVER, if you want to allow a user to store values in an array that they create, you are diving into the world of Reading and Writing Files !!! this is awesome to learn !!! implementing this is not entirely simple; however, it does not have to be hard. i don’t have enough characters to type all of the code how. however, i hope i have been able to point you in the write direction to go about learning how to do this !!!

  • @ardcodelover
    @ardcodelover 2 ปีที่แล้ว

    Valuable bro

  • @sihleeundefined1208
    @sihleeundefined1208 4 ปีที่แล้ว

    Thanks bro, keep it up💪🏿💪🏿💪🏿

  • @D14R
    @D14R ปีที่แล้ว

    So
    Public static void main is method
    (String [] args) is array???

  • @zinebjinari7893
    @zinebjinari7893 3 ปีที่แล้ว

    great

  • @baharehkjani6761
    @baharehkjani6761 ปีที่แล้ว

    I kiss your head, dear bro code ! LOVED it ! Thank you !

  • @mensahtribeadventures2630
    @mensahtribeadventures2630 2 ปีที่แล้ว

    how would you bubble sort this 2d array

  • @dianamilenaarchilacordoba4632
    @dianamilenaarchilacordoba4632 3 หลายเดือนก่อน

    great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much

  • @tissue.5706
    @tissue.5706 3 ปีที่แล้ว +2

    Idk whats happening to my Ide but it isnt becoming 2d but instead its a list idk why but i copy pasted ur code and it become 2d then I typed it again and its still a list :T

    • @ByeBaybe
      @ByeBaybe 2 ปีที่แล้ว

      Last line needs to be System.out.print(cars[i][j]+" "); NOT System.out.println(cars[i][j]+" "); . Look for the 'ln' before 'print'. That's causing spaces inbetween each bundle of text.

  • @ibrahimylmaz8378
    @ibrahimylmaz8378 2 ปีที่แล้ว

    you are the man!

  • @muhdijas6646
    @muhdijas6646 3 หลายเดือนก่อน

    thee macha lub uuuuuuuuuuuuuuuuu

  • @عمروأبوالحوف
    @عمروأبوالحوف 2 ปีที่แล้ว

    how to check if the matrix is quare : matrix[n][n]

  • @blueking5739
    @blueking5739 3 ปีที่แล้ว

    I don’t know what’s wrong with my console, it would display everything straight down and not on the side like his. I need help

  • @GIllies0.3
    @GIllies0.3 4 หลายเดือนก่อน

    very meowtastic

  • @kidhacker1000
    @kidhacker1000 2 ปีที่แล้ว

    I have a question and would really appreciate anyone's help. I'm not understanding what the "length" is supposed to do in i

    • @bryanZ17
      @bryanZ17 2 ปีที่แล้ว +1

      As i undestand, that's used to read the size of the array. So the as long as counter doesn't surpass the size of the array, it will continue to loop around.
      Once, the counter matches the size or 'length' of the array, it will stop.

  • @zari_723
    @zari_723 2 ปีที่แล้ว

    thanks, it's so helpful

  • @aya2222
    @aya2222 3 ปีที่แล้ว

    Why it should be "j

    • @shinkanade1552
      @shinkanade1552 3 ปีที่แล้ว

      I had the same question lol, but i think it's because it's a 2D array.i'm not sur but i think it's to say the length of the row not the column. I will let Bro answer this :p

  • @mithunbabbira
    @mithunbabbira 4 ปีที่แล้ว

    amazing

  • @kirillutsenko9306
    @kirillutsenko9306 2 ปีที่แล้ว

    thx a lot for your help

  • @sihleeundefined1208
    @sihleeundefined1208 3 ปีที่แล้ว

    So we can't remove an item within this array?

  • @曾毓哲-b1t
    @曾毓哲-b1t ปีที่แล้ว

    thank you very much

  • @nirvomind
    @nirvomind 4 ปีที่แล้ว

    Thanks , best explanation !

  • @phiphongnguyen3352
    @phiphongnguyen3352 3 ปีที่แล้ว

    thanks you very much

  • @jackepra8026
    @jackepra8026 2 ปีที่แล้ว

    Thanks you!!
    Very usefull

  • @hadihiwa5690
    @hadihiwa5690 8 หลายเดือนก่อน

    Thanx bro

  • @bekturasanbekov1979
    @bekturasanbekov1979 ปีที่แล้ว

    thx 4 vid bro !

  • @freedom4218
    @freedom4218 6 หลายเดือนก่อน

    Yeah!

  • @ghoggaliabdou4222
    @ghoggaliabdou4222 3 ปีที่แล้ว

    Thank you so much 💙💙💙

  • @adityaalshi7081
    @adityaalshi7081 2 ปีที่แล้ว

    ❤️👌

  • @matinmonshizadeh
    @matinmonshizadeh 3 ปีที่แล้ว

    thanks bro

  • @yeliza2350
    @yeliza2350 2 ปีที่แล้ว

    6 ferbruar l watched

  • @chiefeveryday7541
    @chiefeveryday7541 7 หลายเดือนก่อน

    🐐

  • @quanyufeng579
    @quanyufeng579 3 ปีที่แล้ว

    Thanks

  • @omersond4891
    @omersond4891 3 ปีที่แล้ว

    thanks for this

  • @bartomiejsniadach5795
    @bartomiejsniadach5795 2 ปีที่แล้ว

    Thank you Bro

  • @danielmilewski7659
    @danielmilewski7659 2 ปีที่แล้ว

    comments for stats!

  • @kiki.t2094
    @kiki.t2094 2 ปีที่แล้ว

    Thank you Bro, you gave me an idea how I can solve my code problems 👍🙏

  • @Santiago-iu8mk
    @Santiago-iu8mk 2 ปีที่แล้ว

    Gracias brooo

  • @aya2222
    @aya2222 3 ปีที่แล้ว

    Someone help me.... why it should be ( int i=0; i

    • @shinkanade1552
      @shinkanade1552 3 ปีที่แล้ว +2

      @TheFakeViRuZz good answer but it's not complete, i think we need to understand the difference between the "Index (i)" and the "Length (cars.length)".
      When you declare the array of 3 string ( ex : String[ ] cars = new String [3] ) :
      1. The length is 3 ( cars.length, returns 3 )
      2. The index goes from "0" to "2" ( cars[0], cars[1], cars[2] )

    • @aya2222
      @aya2222 3 ปีที่แล้ว +1

      @@shinkanade1552 thanks!!!!!

  • @danny.3036
    @danny.3036 3 ปีที่แล้ว

    Thanks, Bro! ☕

  • @kidcracker
    @kidcracker ปีที่แล้ว

    ty bro

  • @Simis999
    @Simis999 2 ปีที่แล้ว

    Back to the good microphone

  • @PoorwayTraning
    @PoorwayTraning ปีที่แล้ว

    thanks

  • @alexyakoveno4682
    @alexyakoveno4682 2 ปีที่แล้ว

  • @irajgharaee7057
    @irajgharaee7057 3 ปีที่แล้ว

    👍

  • @obiadaoma3840
    @obiadaoma3840 2 ปีที่แล้ว

    bro code please can you explain collection interface and harshmap

  • @uclong1176
    @uclong1176 4 ปีที่แล้ว

    useful

  • @alialhussain4139
    @alialhussain4139 6 หลายเดือนก่อน

    Thanks, Bro 06/02/2024