码迷,mamicode.com
首页 > 编程语言 > 详细

2类型转换异常:Exception in thread "main" java.lang.ClassCastException:java.lang.Object cannot be cast to java.lang.Integer

时间:2017-06-29 10:00:07      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:异常   java   ati   test   not   color   logs   类型转换   pre   

public class TestException {
    public static void main(String[] args) {
        Object obj = new Integer(1);
        int i =(Integer)(obj);
        System.out.println(i);
        
        Object object = new Object();
        if (object instanceof Integer){
            System.out.println(true);
        }
        int j = (Integer)object;
        System.out.println(j);
    }
}
1
Exception in thread "main" java.lang.ClassCastException: java.lang.Object cannot be cast to java.lang.Integer
    at TestException.main(TestException.java:8)

 

2类型转换异常:Exception in thread "main" java.lang.ClassCastException:java.lang.Object cannot be cast to java.lang.Integer

标签:异常   java   ati   test   not   color   logs   类型转换   pre   

原文地址:http://www.cnblogs.com/BaiLaowu/p/7092331.html

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