Home Java Java-methods Generics Method in Java



Generics Method in Java
Posted on: November 15, 2008 at 12:00 AM
After going through the example, you will be able to declare and use generic methods in Java programming language.

Generics Method in Java

     

After going through the example, you will be able to declare and use generic methods in Java programming language. As you already know, generic method use parameter type declaration and that can be done using the <> syntax. 

For example:

public static <E> void printArray(E[] inputArray). The syntax can be used only before the return type of the method. Basically generic method can be used by any generic or nongeneric class and those class can used that generic type as argument. They can also use it as return type.

 

 

 

 

Code for Java Method - Generics

public class UseGenericMethod {
public static <E> void printArray(E[] inputArray) {
for (E element : inputArray)
System.out.printf("%s ", element);
System.out.println();
}
public static void main(String args[]) {
Integer[] array = 102030405060 };
System.out.println("The Array contains:");
printArray(array)
}
}

Output will be displayed as:

Generic Method Java

Download Source Code

Related Tags for Generics Method in Java:
javacprogrammingsyntaxlanguageiomethodsmethodtypegenericreadparameterusingdeclarationexampleprogramtoramexamlaneilaxcanusepeinnoasmntparmincaminjadaftercldeclaretaxthroughagemehrproparamdoxaxampsatratiokhallmetermplgoeaandarvassrithavabablatiafhateclpleplprmindodsonogro


More Tutorials from this section

Ask Questions?    Discuss: Generics Method in Java  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.