Skip to content

Instantly share code, notes, and snippets.

View Kashish-pandita-cloudeq's full-sized avatar

KASHISH PANDITA Kashish-pandita-cloudeq

View GitHub Profile
public class GenericMethodTest {
// generic method printArray
public static < E > void printArray( E[] inputArray ) {
// Display array elements
for(E element : inputArray) {
System.out.printf("%s ", element);
}
System.out.println();
}