会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
莫逸风的博客
首页
新随笔
联系
订阅
管理
java基本数据类型和包装类之间的转换(装箱,拆箱)
1、装箱:把基本数据类型转换成包装类
1.1自动装箱
int t1=2; Integer t2 =t1;
1.2手动装箱
Integer t3 = new Integer(t1);
2、拆箱:把包装类转换成基本数据类型
2.1自动拆箱
int t4=t2;
2.2手动拆箱
int t5 = t2.intValue();
posted @
2018-12-26 19:30
莫逸风
阅读(
88
) 评论(
0
)
编辑
收藏
举报
刷新页面
返回顶部
公告