java判断数据类型两种方式

  1. instanceof       
    	String s = "";
           System.out.println(s instanceof String); // true
       
  2. simpleName
    String s = "";
    System.out.println(s.getClass().getSimpleName()); // String
posted @ 2015-08-31 12:07  ordinary01  阅读(8403)  评论(0编辑  收藏  举报