摘要: https://www.cnblogs.com/dubo-/p/5565677.html 小范围可以赋值给大类型:eg :byte i = 30; int j = i; 大范围不可以赋值给小类型(只能通过强制类型转换,可能损失精度):eg :int i = 30; byte j = i;(错误) 因 阅读全文
posted @ 2020-01-07 00:29 田小树。 阅读(126) 评论(0) 推荐(0) 编辑