
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Multiple Type Parameters in Generic Methods in Java
Generics is a concept in Java where you can enable a class, interface and, method, accept all (reference) types as parameters. In other words it is the concept which enables the users to choose the reference type that a method, constructor of a class accepts, dynamically. By defining a class as generic you are making it type-safe i.e. it can act up on any datatype.
To define a generic class you need to specify the type parameter you are using in the angle brackets “<>” after the class name and you can treat this as datatype of the instance variable an proceed with the code.
Example − Generic class
class Student<T>{ T age; Student(T age){ this.age = age; } public void display() { System.out.println("Value of age: "+this.age); } }
Usage − While instantiating the generic class you need to specify the object name after the class within the angular brackets. Thus, chose the type of the type parameter dynamically and pass the required object as a parameter.
public class GenericsExample { public static void main(String args[]) { Student<Float> std1 = new Student<Float>(25.5f); std1.display(); Student<String> std2 = new Student<String>("25"); std2.display(); Student<Integer> std3 = new Student<Integer>(25); std3.display(); } }
Example generic methods
Similar to generic classes you can also define generic methods in Java. These methods use their own type parameters. Just like local variables, the scope of the type parameters of the methods lies within the method.
While defining generic methods you need to specify the type parameter in the angular brackets and use it as a local variable.
Example
public class GenericMethod { <T>void sampleMethod(T[] array) { for(int i=0; i<array.length; i++) { System.out.println(array[i]); } } public static void main(String args[]) { GenericMethod obj = new GenericMethod(); Integer intArray[] = {45, 26, 89, 96}; obj.sampleMethod(intArray); String stringArray[] = {"Krishna", "Raju", "Seema", "Geeta"}; obj.sampleMethod(stringArray); } }
Output
45 26 89 96 Krishna Raju Seema Geeta
Multiple parameters
You can also use more than one type parameter in generics in Java, you just need to pass specify another type parameter in the angle brackets separated by comma.
Example − multiple parameters in methods
import java.util.Arrays; public class GenericMethod { public static <T, E> void sampleMethod(T[] array, E ele ) { System.out.println(Arrays.toString(array)); System.out.println(ele); } public static void main(String args[]) { Integer [] intArray = {24, 56, 89, 75, 36}; String str = "hello"; sampleMethod(intArray, str); } }
Output
[24, 56, 89, 75, 36] hello
Example − multiple parameters in class
class Student<T, S> { T t; S s; Student(T t, S s){ this.t = t; this.s = s; } public void display() { System.out.println("Value of "+this.t+" is: "+this.s); } } public class GenericsExample { public static void main(String args[]) { Student<String, String> std1 = new Student<String, String>("Name", "Raju"); Student<String, Integer> std2 = new Student<String, Integer>("Age", 20); Student<String, Float> std3 = new Student<String, Float>("Percentage", 96.5f); std1.display(); std2.display(); std3.display(); } }
Output
Value of Name is: Raju Value of Age is: 20 Value of Percentage is: 96.5