Java array of objects 🍱

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 ธ.ค. 2024

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

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

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

    //Food[] refrigerator = new Food[3];

    Food food1 = new Food("pizza");
    Food food2 = new Food("hamburger");
    Food food3 = new Food("hotdog");

    Food[] refrigerator = {food1,food2,food3};

    //refrigerator[0] = food1;
    //refrigerator[1] = food2;
    //refrigerator[2] = food3;

    System.out.println(refrigerator[0].name);
    System.out.println(refrigerator[1].name);
    System.out.println(refrigerator[2].name);

    }
    }
    //******************************************************
    public class Food {
    String name;

    Food(String name){
    this.name = name;
    }
    }//******************************************************

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

      do you have to declare each object in the array like you did with the class ob1 = new class; or is there an easier way to do it like how you can declare int arrays with a simple for loop?

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

      @@nikleduc1158 You can also do for loops :D

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

      The laziest person who copy this text files :)

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

      @@zhaocheng6114can I use other data types in the array aswell?

  • @dirtygattor9109
    @dirtygattor9109 9 หลายเดือนก่อน +11

    Insane this is 3 years old but has done the best job at explaining how to get this done. Bravo!

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

    best videos about programming

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

    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

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

    You can print all three elements using for loop
    for(int i = 0; i < 3; i++) {
    System.out.println(refrigerator[i].name);

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

      No, it didnt work, ive just tried it and I caught an error. I dont know why, buy it doenst work
      P.s this is my code if you want to look at:
      public class Main {
      public static void main(String[] args) {
      Food[] refrigerator = new Food[3];
      Food food1 = new Food("pizza");
      Food food2 = new Food("hamburger");
      Food food3 = new Food("hotdog");
      refrigerator [0] = food1;
      refrigerator [1] = food2;
      refrigerator [2] = food3;
      for (int i = 0; i

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

      @@Golosovtalks You forgot to input the 'name' in the println statement, it shows the address of the food only if u not include name, hope this can helps
      for(int i=0; i

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

      You can also do that with
      for (Food i: refrigerator) {
      System.out.println(i.name);
      }

  • @habtomghebremedhin9829
    @habtomghebremedhin9829 9 หลายเดือนก่อน +1

    You are amazing. Your knowledge and delivering skill is amazing

  • @murats.3481
    @murats.3481 8 หลายเดือนก่อน +3

    These videos are very useful for us beginners. Thank you!

  • @sujayirrinki4915
    @sujayirrinki4915 11 หลายเดือนก่อน +1

    bro ur an absolute g. I'm watching and following along with every video in ur java playlist and ur seriously filling in gaps. Im gonna use ur vids for the other languages as well. thanks bro

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

    Short, Simple & Effective. Thanks a ton.

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

      Like a mini skirt

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

    Thank god I can finally organize my fridge.

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

    Youve just given me hope again. Youre such a natural. Thank you very much

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

    Thank you so much, I could understand only watching once. Very good example

  • @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

  • @khaledmohamed-hn9nz
    @khaledmohamed-hn9nz 4 ปีที่แล้ว +2

    thanks brother we appreciate your efforts ....best of luck

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

    Completely understood, also with for loop for int numbers this time. 31th. Thank you, ma Bro Sensei!

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

    Excelent video, very helpfull to newbies like me!

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

    Well done explained.

  • @Frosty-od5lu
    @Frosty-od5lu 2 ปีที่แล้ว

    Straight to the point nice video♥️

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

    thanks for this great tutorial series

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

    Thank you dude! Now I can write my homework and know more about classes and objects!

  • @TuckerBryant-m1r
    @TuckerBryant-m1r 8 หลายเดือนก่อน

    Bro is coming in clutch for my cs final tomorrow -- Thank you!

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

    Amazing!!!

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

    nice 1

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

    Wow man, thank you for making this! It really helped

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

    Good video as always

  • @TareqRahaman-u6x
    @TareqRahaman-u6x ปีที่แล้ว

    Great

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

    Thank you! This helped me out.

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

    I loved it

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

    Wow!!! im learning❤❤❤ keep it up bro, such a big help for beginners like me.😊

  • @ChristianRodriguez-tm3jg
    @ChristianRodriguez-tm3jg ปีที่แล้ว

    tyanks for your help

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

    Very helpful

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

    nice👌🙌

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

    Great video bro

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

    Thanks🎉🎉🎉😊

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

    if you have to create 30+ objects can you use a for loop to instantiate them?

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

      Sure, something like this might work
      Car[] cars = new Car[30];
      for(int i = 0; i < 30; i++) {
      cars[i] = new Car();
      }

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

    Liked it sm

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

    Good video, thanks

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

    Nice

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

    🙏🏻

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

    Good content!

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

    Thanks, bro.

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

    thanx for the help!

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

    Great video

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

    Thanks, Bro!

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

    nice

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

    Thanks a whole lot for this!

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

    This is really great can you do one where the object array can hold objects of different types (non-primitive objects)?

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

    Nice.

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

    Like and comments

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

    ❤❤❤

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

    🍱👍

  • @theinthanzaw3069
    @theinthanzaw3069 16 วันที่ผ่านมา

    thank bro

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

    Thnak you for all your help

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

    Thank you so much sir.

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

    Thanks, Bro! ☕ You're awesome!

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

    Good goody!

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

    Thank you Bro

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

    noice

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

    thanks bro

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

    Bro code the best

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

    Another banger lesson

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

    i just punched the like button because of One Punch Man.

  • @_7.T_
    @_7.T_ 4 ปีที่แล้ว

    thank you my Bro ♥♥♥

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

      عربي ؟

  • @pa-305
    @pa-305 3 ปีที่แล้ว

    best brooo

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

    1:41 I don't understand why he is telling, "give a size if we do not plan assigning values right away". I m wondering arrarys are fixed if we declare size at the initialisation, meaning he have plan to assign 3 values at this program hence he is giving size 3. Is there a way he can increase the size dynamically during the run time if the array size is declared at the initialisation? Pls help to advise if I m missing something.

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

      Using arraylists, you can change the size during runtime

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

    Thanks men

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

    Perfect!

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

    👌👌

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

    Thank you!

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

    Thanks!

  • @MrLoser-ks2xn
    @MrLoser-ks2xn 2 ปีที่แล้ว

    Thanks

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

    name is in the Food class object. So how it is associating with main class when you are printing the food name.
    Can you explain it please?

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

    lets gooooo

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

    thank you bro

  • @augischadiegils.5109
    @augischadiegils.5109 4 ปีที่แล้ว +1

    Thanks!!

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

    PEAK

  • @FJ-jy1ox
    @FJ-jy1ox 3 ปีที่แล้ว

    thanks

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

    Cant this be done in the same class?

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

    💙

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

    Can I create an arrayList of objects?

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

    Thank you

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

    Is this array bag?

  • @Lpx-d4m
    @Lpx-d4m 8 หลายเดือนก่อน

    thank sir

  • @johan-oe9kz
    @johan-oe9kz 3 ปีที่แล้ว

    👍

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

    I am a heroooo

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

    how do automatically create an object? what if you allow the user to add a food? how to auto create food4

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

    i like food

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

    Thankssssssss

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

    But how do I enter new value inside the array object

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

    gg

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

    Is pizza your favorite food, cause you mention about it everytime

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

    Being formal, isn’t an array of objects technically called an ArrayList?

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

    Lets get this bread

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

    nais

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

    learnt

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

    Java seems easier than python

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

    Where do you study Bro ?

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

    I feel like I should be paying my college tuition to Bro Code instead.

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

    West Jett

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

    sometimes it seems that you work as an ambassador of pizza companies. But I doesn't matter, as usual thanks