1 public static String getType(Object o){ //获取变量类型方法 2 return o.getClass().toString(); //使用Object类型的getClass()方法 3 }