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

关于instanceof

时间:2014-07-22 23:16:12      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:blog   java   re   c   div   line   

关于instanceof ,两边类型要有关系,通常左边必有钱类型范围大,右边集成左边的类型。

1
2
3
4
5
6
7
8
public class BasicTypeTest {
    public static void main(String[] args) {
        Object test = 12;
        boolean flag = test instanceof Integer;
//      flag =  instanceof Integer;  //报错
        System.out.println(flag);
    }
}

  

关于instanceof,码迷,mamicode.com

关于instanceof

标签:blog   java   re   c   div   line   

原文地址:http://www.cnblogs.com/baby-bear/p/3699809.html

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