码迷,mamicode.com
首页 > 其他好文 > 详细

instanceof的用法①

时间:2015-11-07 20:22:09      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class typeof1{
 2     private String a="zzw";
 3     public void instance(){
 4         if(a instanceof String) //判断是不是String类型的
 5         {
 6             System.out.println("hello world!");
 7         }
 8     }
 9     public static void main(String args[]){
10         new typeof1().instance();
11     }
12 }

运行结果:

hello world!

instanceof的用法①

标签:

原文地址:http://www.cnblogs.com/zzzzw/p/4945864.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!