Click here to watch in Youtube :
https://www.youtube.com/watch?v=Eo8W1Cfok1Q&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
Java Tutorial: Generics in java | Java Generics [Generics Introduction] |
Java Tutorial: Generics in java | Java Generics [Generics Introduction] |
import java.util.ArrayList;
public class NonGenericDemo
{
public static void main(String[] args)
{
ArrayList arrayList = new ArrayList();
arrayList.add("Peter");
arrayList.add(new Integer(10));
System.out.println(arrayList);
String stringValue = (String)arrayList.get(0);
Integer integerValue = (Integer)arrayList.get(1);
System.out.println("stringValue = " +stringValue);
System.out.println("integerValue = " +integerValue);
}
}
Output[Peter, 10]
stringValue = Peter
integerValue = 10
GenericDemo.javaimport java.util.ArrayList;
public class GenericDemo
{
public static void main(String[] args)
{
ArrayList<String> arrayList = new ArrayList<String>();
arrayList.add("Peter");
arrayList.add("Ram");
System.out.println(arrayList);
String stringValue = arrayList.get(0);
System.out.println("stringValue = " +stringValue);
}
}
Output[Peter, Ram]
stringValue = Peter
Click the below link to download the code:
No comments:
Post a Comment