1 public class InstanceOfTest {2 3 public static void main(String [] args) {4 Object o = new Integer (9);5 if (o instanceof Integer ) {6 int i = 0;7 }8 }9 }10