Java 2D arrays 🚚

  Рет қаралды 182,104

Bro Code

Bro Code

Күн бұрын

Пікірлер: 185
@BroCodez
@BroCodez 4 жыл бұрын
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
@krisykrongdiaries4786
@krisykrongdiaries4786 Жыл бұрын
Wow
@RestedAura2
@RestedAura2 Жыл бұрын
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 Жыл бұрын
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 10 ай бұрын
thx bro
@maximizer174
@maximizer174 6 ай бұрын
@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 5 ай бұрын
​@@maximizer174bruh, you got it mixed up. Columns are verticles (top to bottom) Rows are horizontal (left to right)
@maximizer174
@maximizer174 5 ай бұрын
@@transfertransfer986 isn't that what i said? 😅
@erneztoyo
@erneztoyo 3 жыл бұрын
System.out.println("Great Video");
@Sssamaa-c8w
@Sssamaa-c8w Жыл бұрын
Boolean comment = true;
@godcomplex1929
@godcomplex1929 10 ай бұрын
If(comment = true) {System.out.println("Amen to that");}
@christiangalagar9213
@christiangalagar9213 6 ай бұрын
​@@godcomplex1929error
@lobitu3423
@lobitu3423 4 ай бұрын
​@@godcomplex1929 your comment is messed up
@nasirabdullayev972
@nasirabdullayev972 14 күн бұрын
​​@@godcomplex1929 comment== true
@dolemerchant69
@dolemerchant69 11 ай бұрын
have been watching ur vids the last few weeks since starting CS in college. they’ve helped so much, thank you
@JuliHoffman
@JuliHoffman 2 жыл бұрын
I can't believe I understood this! You have excellent teaching skills.
@pavelkvasnicka6856
@pavelkvasnicka6856 Жыл бұрын
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
@IceBeam93
@IceBeam93 3 жыл бұрын
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 жыл бұрын
nice! That's a good visualization
@d_36_priyanshuurwate65
@d_36_priyanshuurwate65 2 жыл бұрын
i love pokemon too my code is little diffrent but thNK U BRO
@Micharl-w6i
@Micharl-w6i Жыл бұрын
love aesthetic code@@BroCodez
@honoredegg
@honoredegg 2 жыл бұрын
2d arrays understood completely. 16th. Thank you, ma Bro Sensei!
@dillonpaul1498
@dillonpaul1498 Жыл бұрын
best teacher ever.. good job bro
@medjl6083
@medjl6083 3 жыл бұрын
This is important video for multi-dimentional array.
@BrokenG-String
@BrokenG-String 9 ай бұрын
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.
@youngdumbguitarist5348
@youngdumbguitarist5348 Жыл бұрын
This is such a helpful and well explained video! Thanks!
@davidbolduc4378
@davidbolduc4378 3 жыл бұрын
I love watching these videos before class.
@bradleydeans192
@bradleydeans192 2 жыл бұрын
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 Жыл бұрын
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!
@uc8xo
@uc8xo Жыл бұрын
Bro it helped me tommorrow is my exam and was clulessly watching this now
@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.
@filip_g
@filip_g 2 ай бұрын
bro!! What is your eclipse theme?? It looks perfect!! Do you know if there is IntelliJ equivalent?
@cesara9747
@cesara9747 2 жыл бұрын
Your tutorials are the best!
@vedmahant7776
@vedmahant7776 Жыл бұрын
Thanks for the help man, this video helped me a lot.
@ascar66
@ascar66 Жыл бұрын
Good video, thanks for sharing
@leeuwengames315
@leeuwengames315 Ай бұрын
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?
@Clarara-is9li
@Clarara-is9li 7 ай бұрын
Okay now its etched in my brain Thanks dude :)
@fieldsfury
@fieldsfury 2 жыл бұрын
Amazing video! Watching all of these to refresh and learn!
@danchavyn
@danchavyn 2 жыл бұрын
Your video helped me a lot! It was the only tutorial that solved my problem. Thank you!
@rr3nn638
@rr3nn638 3 жыл бұрын
Nice quick and easy explanation. Great job!
@DesiHabibi
@DesiHabibi 3 жыл бұрын
AMAZING ! BEST TUTORIALS HANDS DOWN !
@-omarabusnineh5174
@-omarabusnineh5174 3 жыл бұрын
Thank u Ms.Bro, I'm from Jordan.
@Nexxus808
@Nexxus808 5 күн бұрын
I LOVE THIS GUY
@emachine003
@emachine003 Жыл бұрын
i have a java final Friday, so thanks for this video!
@noah77
@noah77 4 жыл бұрын
Ooo nice, I wanted one of these.
@shyam.upadhyay
@shyam.upadhyay 3 жыл бұрын
I have smashed that like button so hard, there is a hole is my screen now. Worth it!
@dew6739
@dew6739 2 жыл бұрын
Good job
@loopify3905
@loopify3905 4 жыл бұрын
very nice explained
@jeyhunaliyev1765
@jeyhunaliyev1765 3 жыл бұрын
Awesome 👏
@relaxjam1952
@relaxjam1952 5 ай бұрын
you are the best
@haykmanukyan5462
@haykmanukyan5462 3 жыл бұрын
simple & great! thanks
@percivalgebashe4376
@percivalgebashe4376 Жыл бұрын
Nice
@supernovic99
@supernovic99 Жыл бұрын
This video was so useful!!! Thank you Bro!
@cristiangarciaperez7230
@cristiangarciaperez7230 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 жыл бұрын
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 жыл бұрын
@@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 жыл бұрын
@@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"
@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.
@coreywoodring3905
@coreywoodring3905 7 ай бұрын
Great Job!
@jasonfenstermaker4
@jasonfenstermaker4 9 ай бұрын
You are getting me through QA class man
@yevgenomelchenko732
@yevgenomelchenko732 Жыл бұрын
Thanks for the lesson
@mohamedwafik3493
@mohamedwafik3493 3 жыл бұрын
👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏👏
@eugenemolchan5141
@eugenemolchan5141 3 жыл бұрын
You are the best bro!
@huuloc8719
@huuloc8719 3 жыл бұрын
Nice.
@ibrahimylmaz8378
@ibrahimylmaz8378 2 жыл бұрын
you are the man!
@trickysachin
@trickysachin 2 жыл бұрын
Awesome👏👏😊😊
@justinbanza4751
@justinbanza4751 3 жыл бұрын
Thank you very much for this video
@zinebjinari7893
@zinebjinari7893 3 жыл бұрын
great
@曾毓哲-b1t
@曾毓哲-b1t Жыл бұрын
thank you very much
@soumelee5661
@soumelee5661 2 жыл бұрын
cool cars bro
@ardcodelover
@ardcodelover Жыл бұрын
Valuable bro
@nirvomind
@nirvomind 3 жыл бұрын
Thanks , best explanation !
@witecki_
@witecki_ 2 жыл бұрын
bro where chalk up u been, it is so cool
@mithunbabbira
@mithunbabbira 4 жыл бұрын
amazing
@GIllies0.3
@GIllies0.3 2 ай бұрын
very meowtastic
@sihleeundefined1208
@sihleeundefined1208 3 жыл бұрын
Thanks bro, keep it up💪🏿💪🏿💪🏿
@MrLoser-ks2xn
@MrLoser-ks2xn 2 жыл бұрын
Thanks
@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
@zari_723
@zari_723 2 жыл бұрын
thanks, it's so helpful
@hadihiwa5690
@hadihiwa5690 6 ай бұрын
Thanx bro
@phiphongnguyen3352
@phiphongnguyen3352 3 жыл бұрын
thanks you very much
@baharehkjani6761
@baharehkjani6761 Жыл бұрын
I kiss your head, dear bro code ! LOVED it ! Thank you !
@kirillutsenko9306
@kirillutsenko9306 2 жыл бұрын
thx a lot for your help
@dianamilenaarchilacordoba4632
@dianamilenaarchilacordoba4632 2 ай бұрын
great video!!! I'm infinitely grateful for your dedication and big heart to share this knowledge with the world. Thank you soo much
@freedom4218
@freedom4218 4 ай бұрын
Yeah!
@ma8969
@ma8969 2 жыл бұрын
thank you
@D14R
@D14R Жыл бұрын
So Public static void main is method (String [] args) is array???
@kiki.t2094
@kiki.t2094 2 жыл бұрын
Thank you Bro, you gave me an idea how I can solve my code problems 👍🙏
@ndivho.k23
@ndivho.k23 3 ай бұрын
what happens when the arrays have to be inserted by the user instead of assigning the arrays
@sunlit-nonentity
@sunlit-nonentity 28 күн бұрын
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 !!!
@عمروأبوالحوف
@عمروأبوالحوف Жыл бұрын
how to check if the matrix is quare : matrix[n][n]
@jackepra8026
@jackepra8026 Жыл бұрын
Thanks you!! Very usefull
@PoorwayTraning
@PoorwayTraning Жыл бұрын
thanks
@adityaalshi7081
@adityaalshi7081 2 жыл бұрын
❤️👌
@sairos4057
@sairos4057 Жыл бұрын
thanks bro
@shivamgaming3559
@shivamgaming3559 6 ай бұрын
👍
@chiefeveryday7541
@chiefeveryday7541 5 ай бұрын
🐐
@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 жыл бұрын
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.
@bartomiejsniadach5795
@bartomiejsniadach5795 2 жыл бұрын
Thank you Bro
@yeliza2350
@yeliza2350 2 жыл бұрын
6 ferbruar l watched
@coltonbailey8873
@coltonbailey8873 3 жыл бұрын
Going on day 5 of your series coming from 0 java experience. A day ago my program looked like this. import javax.swing.JOptionPane; public class Main { public static void main(String[] args) { String[] toyota = {"97' Celica GT4", "94' MR-2 3SGT", "15' 4-Runner SR5"}; String[] dodge = {"21' RAM 1500 TRX", "18' Dodge Challenger SRT Demon"}; String[] subaru = {"Any turbo Subaru. If you can get a turbo Subaru, get a turbo Subaru. Those things are cool!"}; String make = JOptionPane.showInputDialog("Type in a Vehicle Make to see my opinions on their best versions."); while (make.isBlank()) { JOptionPane.showMessageDialog(null, "Please type in a Make of vehicle. (Toyota, Dodge, Subaru..."); break; } if (make.equalsIgnoreCase("Toyota")) { JOptionPane.showMessageDialog(null,toyota); } if (make.equalsIgnoreCase("Dodge")) { JOptionPane.showMessageDialog(null, dodge); } if (make.equalsIgnoreCase("Subaru")) { JOptionPane.showMessageDialog(null, subaru); } } } to this~! import javax.swing.JOptionPane; public class Main { public static void main(String[] args) { String[][] toyota = new String [2][2]; String[][] dodge = new String [2][2]; String[][] subaru = new String [2][2]; toyota[0][0] = "97' Celica GT4"; toyota[0][1] = "94' MR2 3SGT"; toyota[1][0]="15' 4-Runner SR5"; toyota[1][1]= "20' Camry TRD"; dodge [0][0] = "21' RAM 1500 TRX"; dodge [0][1]= "18' Challenger SRT Demon"; dodge [1][0]= "19' Charger SRT Hellcat"; dodge [1][1]= "21' Viper SRT"; subaru[0][0]= "EVERY"; subaru[0][1]= "SUBARU"; subaru[1][0]= "IS"; subaru[1][1]= "GOOD"; String make = JOptionPane.showInputDialog("Type in a Vehicle Make to see my top 4. Type `all' to view all"); while (make.isBlank()) { JOptionPane.showMessageDialog(null, "Please type in a Make of vehicle, or `all'. (Toyota, Dodge, Subaru..."); break; } if (make.equalsIgnoreCase("Toyota")) { JOptionPane.showMessageDialog(null,toyota); } if (make.equalsIgnoreCase("Dodge")) { JOptionPane.showMessageDialog(null, dodge); } if (make.equalsIgnoreCase("Subaru")) { JOptionPane.showMessageDialog(null, subaru); } if (make.equalsIgnoreCase("all")) { for (int i=0; i
@kidhacker1000
@kidhacker1000 2 жыл бұрын
Hello, just wondering how far are you into your programming journey now? Its amazing how you were able to do this in 5 days.. May I ask how many hours a day were you studying? Thank you and have a nice day.
@ghoggaliabdou4222
@ghoggaliabdou4222 3 жыл бұрын
Thank you so much 💙💙💙
@blueking5739
@blueking5739 2 жыл бұрын
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
@muhdijas6646
@muhdijas6646 2 ай бұрын
thee macha lub uuuuuuuuuuuuuuuuu
@Horatius_23
@Horatius_23 2 жыл бұрын
THX!
@Santiago-iu8mk
@Santiago-iu8mk 2 жыл бұрын
Gracias brooo
@omersond4891
@omersond4891 3 жыл бұрын
thanks for this
@kidcracker
@kidcracker Жыл бұрын
ty bro
@mensahtribeadventures2630
@mensahtribeadventures2630 2 жыл бұрын
how would you bubble sort this 2d array
@tamirrozenfeld3572
@tamirrozenfeld3572 2 жыл бұрын
Thank!!
@bekturasanbekov1979
@bekturasanbekov1979 Жыл бұрын
thx 4 vid bro !
@uclong1176
@uclong1176 3 жыл бұрын
useful
@danny.3036
@danny.3036 3 жыл бұрын
Thanks, Bro! ☕
@Simis999
@Simis999 2 жыл бұрын
Back to the good microphone
@sihleeundefined1208
@sihleeundefined1208 3 жыл бұрын
So we can't remove an item within this array?
@tissue.5706
@tissue.5706 3 жыл бұрын
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.
@mohamedelfadli3125
@mohamedelfadli3125 Жыл бұрын
@aya2222
@aya2222 3 жыл бұрын
Someone help me.... why it should be ( int i=0; i
@shinkanade1552
@shinkanade1552 3 жыл бұрын
@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 жыл бұрын
@@shinkanade1552 thanks!!!!!
@danielmilewski7659
@danielmilewski7659 2 жыл бұрын
comments for stats!
Java String methods 💬
6:18
Bro Code
Рет қаралды 125 М.
Java methods 📞
11:05
Bro Code
Рет қаралды 143 М.
У вас там какие таланты ?😂
00:19
Карина Хафизова
Рет қаралды 18 МЛН
Human vs Jet Engine
00:19
MrBeast
Рет қаралды 181 МЛН
Каха и лужа  #непосредственнокаха
00:15
兔子姐姐最终逃走了吗?#小丑#兔子警官#家庭
00:58
小蚂蚁和小宇宙
Рет қаралды 16 МЛН
Array vs. ArrayList in Java Tutorial - What's The Difference?
17:36
Coding with John
Рет қаралды 544 М.
2D Arrays in Java
14:57
Simply Coding
Рет қаралды 26 М.
Java arrays 🚗
6:26
Bro Code
Рет қаралды 212 М.
Introduction to Two-Dimensional (2D) Arrays
10:20
Neso Academy
Рет қаралды 704 М.
Java objects (OOP) ☕
10:46
Bro Code
Рет қаралды 187 М.
Nested Loops & 2D Arrays | Java | Tutorial 23
13:15
Giraffe Academy
Рет қаралды 112 М.
#29 Multi Dimensional Array in Java
13:08
Telusko
Рет қаралды 173 М.
My 10 “Clean” Code Principles (Start These Now)
15:12
Conner Ardman
Рет қаралды 262 М.
Create Matrix In Java || How to iterate a Matrix [2D Array]
18:27
Naveen AutomationLabs
Рет қаралды 19 М.
Traversing a 2 Dimensional Array (Java Tutorial)
10:46
Bill Barnum
Рет қаралды 16 М.
У вас там какие таланты ?😂
00:19
Карина Хафизова
Рет қаралды 18 МЛН