How to Use the instanceof Operator with a Generic Class in Java

See Java: Tips and Tricks for similar articles.

From time to time you might want to know the data type of a parameter passed to method in a Java generic class. For example, imagine that you wish to write a method to identify whether a String or an Integer was received as an argument. You could accomplish this task using the instanceof operator. To learn how to use the instanceof operator with a Java generic class, follow these four steps.

  1. Open your text editor and type in the following Java statements:Java Source for instanceof GenericThe program instantiates two objects of type GenericInstanceof. The GenericInstanceof class is defined starting at line 10. Notice the use of the instanceof keyword to identify the type of argument passed to the identify method. The main method calls the identify method for each object.
  2. Save your file as UseinstanceofOperatorWithAGenericClass.java.
  3. Open a command prompt and navigate to the directory containing your Java program. Then type in the command to compile the source and hit Enter.Compile Source for instanceof Generic
  4. Type in the command to run your program and hit Enter. Notice in the output that the String variable and the Integer variable were each identified by the generic class.Run for instanceof Generic