Java generics ❓

  Рет қаралды 120,709

Bro Code

Bro Code

Күн бұрын

Пікірлер: 223
@BroCodez
@BroCodez 4 жыл бұрын
//----------------------- Generic Method ----------------------- public class Main { public static void main(String args[]) { Integer[] intArray = {1, 2, 3, 4, 5}; Double[] doubleArray = {5.5, 4.4, 3.3, 2.2, 1.1}; Character[] charArray = {'H', 'E', 'L', 'L', 'O'}; String[] stringArray = {"B","Y","E"}; System.out.print("Integer Array: "); displayArray(intArray); System.out.println(firstIndex(intArray)); System.out.print("Double Array: "); displayArray(doubleArray); System.out.println(firstIndex(doubleArray)); System.out.print("Character Array: "); displayArray(charArray); System.out.println(firstIndex(charArray)); System.out.print("String Array: "); displayArray(stringArray); System.out.println(firstIndex(charArray)); */ } // Generic method public static void displayArray(Thing[] array) { for(Thing x : array) { System.out.print(x+" "); } System.out.println(); } // Generic method with generic return type public static Thing firstIndex(Thing[] array) { return array[0]; } } //----------------------- Generic Class ----------------------- public class Main { public static void main(String args[]) { //bounded types = you can create the objects of a generic class to have data // of specific derived types ex.Number MyGenericClass myInt = new MyGenericClass(1,9); MyGenericClass myDouble = new MyGenericClass(3.14,1.01); //MyGenericClass myChar = new MyGenericClass('@','$'); //MyGenericClass myString = new MyGenericClass("Hello",'!'); System.out.println(myInt.getValue()); System.out.println(myDouble.getValue()); //System.out.println(myChar.getValue()); //System.out.println(myString.getValue()); } } // ---------------------------------------------------------------- public class MyGenericClass { Thing x; Thing2 y; MyGenericClass(Thing x, Thing2 y){ this.x = x; this.y = y; } public Thing2 getValue() { return y; } }
@TechnoSan09
@TechnoSan09 2 жыл бұрын
thank you so much love u bro forever subscriber
@Crispeaks
@Crispeaks Жыл бұрын
Single-handedly taught me Generics and helped me complete an assignment in 30 minutes. Epic!
@tomaszkarolak6179
@tomaszkarolak6179 4 жыл бұрын
The best tutorials, I've ever seen on YT, thx bro!!!
@john81487
@john81487 Жыл бұрын
I always go through one of these videos before starting my bootcamp lessons. It makes everything so much easier to get into.
@patrickjaposmack4573
@patrickjaposmack4573 Жыл бұрын
Excellent tutorial video about generic classes and methods!
@jojovstojo
@jojovstojo 2 жыл бұрын
Bro this was the heaviest video of all till now ! Literally my brain just exploded ! But extremely simple and direct - So thank you for such a badass of a teacher
@karanbrar1934
@karanbrar1934 3 жыл бұрын
That 1 dislike is from bro himself, just to keep himself humble... ;)
@angelcastineira2561
@angelcastineira2561 4 жыл бұрын
a lot of new stuff but really well explained, thanks!
@deeplife9654
@deeplife9654 Жыл бұрын
Let start a campaign to give bro best teacher on youtube award !!!!! ❤❤❤❤❤❤❤ .
@larkinthesky
@larkinthesky 10 ай бұрын
You, my dear Sir, are a legend. Thank you so much for all these incredibly useful instructional videos.
@furki3556
@furki3556 3 жыл бұрын
you have really the best tutorials I have ever seen, thank you. greetings from germany
@ravenguirao9081
@ravenguirao9081 Жыл бұрын
Thanks, I finally understand Generics, some code training/bootcamps explain it really complicated.. but with you i realized it's just that simple.
@rex.kishore
@rex.kishore Жыл бұрын
Well said Bro, you did exactly what we want. The Duration with perfect explanation, great effort that you spend on it. It pay off man. Good Luck ...
@ChrisTDBCODE
@ChrisTDBCODE Ай бұрын
My professor sucks and ever since I started coming here instead of their lectures, my grade went from a B to an A. Thank you Brofessor!
@brianwkinyua
@brianwkinyua 2 ай бұрын
very clear and comprehensive. thank you again.
@weonios
@weonios 5 ай бұрын
The best video for Generics I have ever seen, and the examples are pretty nice!
@faniliana
@faniliana 3 жыл бұрын
This would be the best java tutorial videos out there. Thank you bro
@mohammadreza_arman
@mohammadreza_arman Ай бұрын
Good job bro. That's exactly how you teach sth. I'm very glad that I found this amazing channel. Keep going on
@av2678
@av2678 2 жыл бұрын
Wow! Generic is so damn useful. I wish i saw this video yesterday lol but still, better than never. Well explained too
@roxorsrule8604
@roxorsrule8604 3 жыл бұрын
Wow, I'm glad I found your channel. You style is crystal clear and to the point. Although I'm taking other classes you clarify the points I was having trouble with. Thanks man!
@jesseemana9598
@jesseemana9598 2 жыл бұрын
this channel is a gold mine
@sinmeyyy
@sinmeyyy 3 жыл бұрын
Really the best tutorials on KZbin, that I've seen, keep up the good work Bro!
@SolutionByBrain1
@SolutionByBrain1 Жыл бұрын
You are so smart to simplify such big task in a simple ways Thank you bro! Of Eritrea 🇪🇷
@victoriagee1059
@victoriagee1059 3 жыл бұрын
Your code is so clean. You really know what you are doing!!!!
@ginasomara267
@ginasomara267 3 жыл бұрын
most helpful generics video on the internet. hands down
@chap_01
@chap_01 2 жыл бұрын
Nice channel, nice english, nice elocution, nice explaining.
@OneGrindyBoi
@OneGrindyBoi 3 ай бұрын
unparalleled at teaching, thanks bro
@marke4246
@marke4246 2 жыл бұрын
I just learned more from a twenty minute video than a two hour lecture from my professor. You have a new bro.
@НікітаОрлов-с3ч
@НікітаОрлов-с3ч Жыл бұрын
You are the best !!! Thanks for lessons in 2023
@Naanu_kartik
@Naanu_kartik 3 жыл бұрын
concept cleared 🙌 Thanks Bro...and you have an unique way of explaining the things.
@benderbg
@benderbg Жыл бұрын
Great explanation of an important topic. Thanks Bro!
@chris07ism
@chris07ism Жыл бұрын
Thanks again for another relatively simple concept explained in a brilliant way.
@sergeyb6071
@sergeyb6071 4 жыл бұрын
wow that's a lot of stuff in one tutorial 🤯👍
@Snowmanver2
@Snowmanver2 2 жыл бұрын
best channel with best tutorials out there!
@atongpayatoyatu2760
@atongpayatoyatu2760 3 жыл бұрын
what the hell so good java tutorial i ever saw in youtube. thank you very much!
@kkspuder
@kkspuder 9 ай бұрын
really thx bro, though i'm watched some videos about generics, i'm still struggling with its use, here's some examples also other videos i watched but i'm not got a good understanding until you open the ArrayList class, everything is clear, i got the key point , this is really a nice video
@OnlyOneGedeon
@OnlyOneGedeon 3 жыл бұрын
Thank you for this very helpful video
@v1krv
@v1krv 3 жыл бұрын
Well explained
@anonimanonim1223
@anonimanonim1223 2 жыл бұрын
Great
@waleedharalkathiri1836
@waleedharalkathiri1836 3 жыл бұрын
THE BEST EVER EXPLENATION OF GENERIC CLASS AND METHODS IN KZbin HISTORY🤣
@Remolhunter97
@Remolhunter97 3 жыл бұрын
Best tutorials ever, holy shit it's pleasant to learn looking your videos bro, keep going !
@codeevolution1
@codeevolution1 8 ай бұрын
best teacher on youtube❤❤
@lamias7712
@lamias7712 3 жыл бұрын
Thank you so much for your simplified explanation . Straight to the point.
@traveltheworld5241
@traveltheworld5241 2 жыл бұрын
Self learning but I understand easily ,this guy is awesome...
@quarduroy1
@quarduroy1 Жыл бұрын
Phenomenal explanation, thank you
@diamonddunyasi4945
@diamonddunyasi4945 2 жыл бұрын
Thx Bro I think you were descend from the sky 😀. We are waiting for more tutorials... Thank you
@dbvs007
@dbvs007 2 жыл бұрын
Awesome 👏
@murrayKorir
@murrayKorir 3 жыл бұрын
well explained especially that part of where you can use 'Thing' instead of 'T' clears the mystery behind why is it always T,E or S.
@mohammedzaidkhan5687
@mohammedzaidkhan5687 Ай бұрын
great video
@zxnnightstalker2289
@zxnnightstalker2289 4 жыл бұрын
Very clear explanation. My first clear understanding comes from you. Thanks a lot. ;)
@mariuspet89
@mariuspet89 2 жыл бұрын
Very nice video. You have a nice way of explaining programming concepts.
@anandchaudhary8952
@anandchaudhary8952 3 жыл бұрын
Finally after spending 2 days reading the chapter and going over rigerious examples and still being clueless, I've understood generics. Love the channel name 😁
@mariuspet89
@mariuspet89 2 жыл бұрын
Yes, his chanel is very good!
@ArielLorusso
@ArielLorusso Жыл бұрын
His channel is not generic
@Elan_Altair
@Elan_Altair 3 жыл бұрын
This was really helpful for my exams ,Tq broooooooooo
@mihirkohli4804
@mihirkohli4804 3 жыл бұрын
please do data structure love your content
@andersontiban5356
@andersontiban5356 Жыл бұрын
so helpful thankyou
@jaaeamor7901
@jaaeamor7901 2 жыл бұрын
Thanks for making this tutorial. Appreciate it 👍
@chamindilhara5765
@chamindilhara5765 2 жыл бұрын
thanks for teach us
@kaushalprasadyadav9242
@kaushalprasadyadav9242 2 жыл бұрын
Great work bro👍
@Ethhix
@Ethhix 3 жыл бұрын
Thank you for making this video, it was very helpful and informative! I appreciate it.
@quanyufeng579
@quanyufeng579 3 жыл бұрын
Wonderful!!
@hawzhin010
@hawzhin010 2 жыл бұрын
well done ❤❤
@hardcoded6325
@hardcoded6325 3 жыл бұрын
very good, the best explanetion in the word!!! (i'm from Brazil)
@DuygamingBlogspot
@DuygamingBlogspot 3 ай бұрын
I really understand what is arraylist😊
@andreajeanbatchelor5142
@andreajeanbatchelor5142 2 жыл бұрын
Great examples!
@kedarsambhus3623
@kedarsambhus3623 3 жыл бұрын
Amazing! Easy to understand explanation to generics. Thanks bro.
@Ege39
@Ege39 3 жыл бұрын
Nice
@miazhi_
@miazhi_ 4 ай бұрын
good video
@yifansu8432
@yifansu8432 2 жыл бұрын
This video is sooooooo awsome.......
@ndthdproduction2900
@ndthdproduction2900 3 жыл бұрын
That's so good for the basic bro ! Hope you do more a bout advanced like more complex generic methods. Hope you doing well bro
@walterwhite2418
@walterwhite2418 Жыл бұрын
Great video thx for your effort !!
@abvy25
@abvy25 3 жыл бұрын
Best explanation...
@darianchan4649
@darianchan4649 3 жыл бұрын
very nice tutorial bro keep em coming !
@wolanus
@wolanus 4 жыл бұрын
Thanks for the tutorial, Bro.
@comrade107
@comrade107 Жыл бұрын
You are awesome! Thanks for all the help!!
@almanduku9043
@almanduku9043 3 жыл бұрын
Very useful lesson , thank you sir :)))
@chromeshock3774
@chromeshock3774 Жыл бұрын
Dam, these videos are gold! So helpful in my bootcamp.
@ozbayhilmi
@ozbayhilmi 11 ай бұрын
Thank you for this video.
@GenjaOrigins
@GenjaOrigins 3 жыл бұрын
I was rejected in interview cause i didnt know what is generics and i saw that in their code xd, i saw many in a generic method. Thx
@miuwai6211
@miuwai6211 2 жыл бұрын
Very clear explanation. Thank you Bro. :)
@EdgarLopez-dq6zv
@EdgarLopez-dq6zv Жыл бұрын
I really like your videos. You explain complex concepts appears easy, thx man
@fitzsimmons7
@fitzsimmons7 11 ай бұрын
this was helpful, exploded my brain, thanks
@kemann3815
@kemann3815 3 жыл бұрын
Wow. Magnificent
@Garrison86
@Garrison86 2 жыл бұрын
Amazing! thanks for this awesome explanation, really appreciate your videos.
@dieseldust5315
@dieseldust5315 3 жыл бұрын
Great Tutorial!
@keler50213
@keler50213 6 күн бұрын
great video!!!!
@aruldilip9430
@aruldilip9430 3 жыл бұрын
I learnt lot of things so far from the above 83 videos
@d.4hveed
@d.4hveed 3 жыл бұрын
Very good explanation!! Thank u
@Say2Cups
@Say2Cups 7 ай бұрын
This the guy that taught me how to code fr
@calebkrauter4027
@calebkrauter4027 11 ай бұрын
Very helpful! Thank you.
@swankitydankity297
@swankitydankity297 3 жыл бұрын
Fantastic tutorial! Thank you so much :)
@mackymichel8052
@mackymichel8052 3 жыл бұрын
Great.
@kyomuhendoprecious8414
@kyomuhendoprecious8414 2 жыл бұрын
Thanks alot
@alanwarthon
@alanwarthon Жыл бұрын
Nice, thanks
@mustapharaimilawal8053
@mustapharaimilawal8053 3 жыл бұрын
Thanks a lot for this amazing tutorial.
@NatyTor
@NatyTor 2 жыл бұрын
ho mannnnnnn your video are so clearly and amazing!! love you bro! thanks for all!
@khazarkhalilov755
@khazarkhalilov755 Жыл бұрын
Liked & Subscribed ! 😊
@dashunderscore7470
@dashunderscore7470 2 жыл бұрын
i am a fellow bro 😎, bro code plaese keep creating videos about java, there are very less content on youtube about java, everyone is posting videos about python , javascript but no one explaining java🥲 , thank you bro.
@polatsaryerli3071
@polatsaryerli3071 2 жыл бұрын
thx bro great video so helpful
@acemanftw
@acemanftw 4 жыл бұрын
instantly subbed after that intro :)
@BroCodez
@BroCodez 4 жыл бұрын
yassss! thanks aceman
@ethankates5359
@ethankates5359 2 жыл бұрын
very helpful, thank you
@thronegamesfm
@thronegamesfm Жыл бұрын
Thank you bro! Very useful video
Java serialization 🥣
21:13
Bro Code
Рет қаралды 82 М.
Generics In Java - Full Simple Tutorial
17:34
Coding with John
Рет қаралды 1,1 МЛН
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41
Java Generics
52:23
Jakob Jenkov
Рет қаралды 5 М.
Java HashMap 🗺️
13:05
Bro Code
Рет қаралды 92 М.
Learn Java GENERICS in 13 minutes! 📦
13:56
Bro Code
Рет қаралды 2,3 М.
Java Generics Tutorial
12:23
Keep On Coding
Рет қаралды 185 М.
Array vs. ArrayList in Java Tutorial - What's The Difference?
17:36
Coding with John
Рет қаралды 570 М.
All Rust string types explained
22:13
Let's Get Rusty
Рет қаралды 192 М.
Java multithreading 🧶
15:18
Bro Code
Рет қаралды 141 М.
Java constructors 👷
10:37
Bro Code
Рет қаралды 203 М.
Java Generics Tutorial
18:12
Programming with Mosh
Рет қаралды 66 М.
Vectors in Java: The 1 Situation You Might Want To Use Them
16:13
Coding with John
Рет қаралды 87 М.
Мен атып көрмегенмін ! | Qalam | 5 серия
25:41