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

Integer相加产生的类型转换问题

时间:2014-12-15 11:48:45      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   for   java   strong   on   div   问题   bs   

做项目时犯二没有搞清楚优先级的问题从而暴露出一个Integer相加而产生的类型转换的问题

Integer a;

Integer b;

Integer c;

c=  a+b==null?a:b;

java编译器报 The operator == is undefined for the argument type(s) int, null 的错误,改为:

c=  a+(b==null?a:b);之后错误就没有了,这是不是可以说明Integer+Integer=int呢

Integer相加产生的类型转换问题

标签:ar   sp   for   java   strong   on   div   问题   bs   

原文地址:http://www.cnblogs.com/superJF/p/4164235.html

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