// 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;
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
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!
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
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 😁
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.
//----------------------- 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;
}
}
thank you so much
love u bro
forever subscriber
Single-handedly taught me Generics and helped me complete an assignment in 30 minutes. Epic!
The best tutorials, I've ever seen on YT, thx bro!!!
I always go through one of these videos before starting my bootcamp lessons. It makes everything so much easier to get into.
Excellent tutorial video about generic classes and methods!
That 1 dislike is from bro himself, just to keep himself humble... ;)
Let start a campaign to give bro best teacher on youtube award !!!!!
❤❤❤❤❤❤❤ .
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
a lot of new stuff but really well explained, thanks!
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!
You, my dear Sir, are a legend. Thank you so much for all these incredibly useful instructional videos.
you have really the best tutorials I have ever seen, thank you. greetings from germany
Thanks, I finally understand Generics, some code training/bootcamps explain it really complicated.. but with you i realized it's just that simple.
very clear and comprehensive. thank you again.
This would be the best java tutorial videos out there. Thank you bro
Wow! Generic is so damn useful. I wish i saw this video yesterday lol but still, better than never. Well explained too
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 ...
Your code is so clean. You really know what you are doing!!!!
You are so smart to simplify such big task in a simple ways
Thank you bro!
Of Eritrea 🇪🇷
You are the best !!! Thanks for lessons in 2023
most helpful generics video on the internet. hands down
Great explanation of an important topic. Thanks Bro!
Good job bro. That's exactly how you teach sth. I'm very glad that I found this amazing channel. Keep going on
Thanks again for another relatively simple concept explained in a brilliant way.
concept cleared 🙌 Thanks Bro...and you have an unique way of explaining the things.
unparalleled at teaching, thanks bro
Very nice video. You have a nice way of explaining programming concepts.
The best video for Generics I have ever seen, and the examples are pretty nice!
Really the best tutorials on RUclips, that I've seen, keep up the good work Bro!
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
I just learned more from a twenty minute video than a two hour lecture from my professor. You have a new bro.
Thank you for this very helpful video
Self learning but I understand easily ,this guy is awesome...
best channel with best tutorials out there!
what the hell so good java tutorial i ever saw in youtube. thank you very much!
wow that's a lot of stuff in one tutorial 🤯👍
Very clear explanation. My first clear understanding comes from you. Thanks a lot. ;)
Nice channel, nice english, nice elocution, nice explaining.
THE BEST EVER EXPLENATION OF GENERIC CLASS AND METHODS IN RUclips HISTORY🤣
Thank you so much for your simplified explanation . Straight to the point.
Thx Bro I think you were descend from the sky 😀. We are waiting for more tutorials... Thank you
please do data structure
love your content
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!
this channel is a gold mine
Phenomenal explanation, thank you
Thanks for making this tutorial. Appreciate it 👍
Best tutorials ever, holy shit it's pleasant to learn looking your videos bro, keep going !
You are awesome! Thanks for all the help!!
This was really helpful for my exams ,Tq broooooooooo
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.
very good, the best explanetion in the word!!! (i'm from Brazil)
Very clear explanation. Thank you Bro. :)
Thanks for the tutorial, Bro.
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
very nice tutorial bro keep em coming !
Dam, these videos are gold! So helpful in my bootcamp.
Fantastic tutorial! Thank you so much :)
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 😁
Yes, his chanel is very good!
His channel is not generic
ho mannnnnnn your video are so clearly and amazing!! love you bro! thanks for all!
Thank you for making this video, it was very helpful and informative! I appreciate it.
Amazing! thanks for this awesome explanation, really appreciate your videos.
Very good explanation!! Thank u
Amazing! Easy to understand explanation to generics. Thanks bro.
this was helpful, exploded my brain, thanks
best teacher on youtube❤❤
Great video thx for your effort !!
instantly subbed after that intro :)
yassss! thanks aceman
Thank you for this video.
Very useful lesson , thank you sir :)))
Very helpful! Thank you.
Thanks a lot for this amazing tutorial.
man this video is full of great info , thank you so much !
I really understand what is arraylist😊
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
That was a good tutorial , thanks :D
Thank you bro! Very useful video
I really like your videos. You explain complex concepts appears easy, thx man
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.
thanks for teach us
I learnt lot of things so far from the above 83 videos
finally I got it. Thank you, Bro!
Awesome explaining, thx bro!
so helpful thankyou
Thank you, it's very helpful.
Great examples!
Liked & Subscribed ! 😊
This video is sooooooo awsome.......
thx bro great video so helpful
Thanks a lot!!! great explanation!
Great Tutorial!
Love this channel!
Great work bro👍
Thanks Bro, this help me to easily understand the basic concept of Generics in Java
Thanks a lot, this was really helpful!
great video
Wow. Magnificent
I liked your end of the session music and fast forward music. What are those?
Well explained
Best explanation...
Good job, Bro!
very helpful, thank you