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

Java基础_赋值运算

时间:2016-09-24 23:21:27      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

 * short s=1;s = s+1;

运算错误,提示损失精度。因为s+1为int类型,int类型赋值给short类型会损失精度

ps:精度变化由小到大为  byte->short->int->long ,反过来就会损失精度


 * short s=1;s+=1;

结果为2.

+=是一个赋值运算符。可以理解为 (short) s = (short) (s+x)

Java基础_赋值运算

标签:

原文地址:http://www.cnblogs.com/lyxin/p/5904373.html

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