Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/12/2012, 20:51
LuisChavezB
 
Fecha de Ingreso: diciembre-2011
Mensajes: 152
Antigüedad: 12 años, 11 meses
Puntos: 34
Respuesta: Comparar clases de instancias

Código java:
Ver original
  1. String a = "hola", b = "mundo";
  2.         Integer c = 2;
  3.         if (a.getClass().isInstance(b)) {
  4.             System.out.println("a instance of b");
  5.         }
  6.         if (c.getClass().isInstance(a)) {
  7.             System.out.println("c instance of a");
  8.         }