python基本数据类型 Java中int和Integer的区别 包装类?
浏览量:1725
时间:2021-03-13 12:39:18
作者:admin
Java中int和Integer的区别 包装类?
Java中有两种数据类型:int、char、double、Boolean、float、byte、short、long,其他都是引用数据类型。基本数据类型和对象数据类型可以相互转换。将int转换为integer的过程是打包,将integer转换为int的过程是解包,integer是int的打包类。int to integer int i=0 integer wrapper=new integer(i)integer to int integer wrapper=new integer(10)int i=wrapperi.int值()
基本数据类型和包装类有什么区别?
基本数据类型:byte short int longfloat double char Boolean八个包装类是byte、short、integer、long、float、double、character、Boolean
python基本数据类型 java的基本数据类型 int类型的包装类
版权声明:本文内容由互联网用户自发贡献,本站不承担相关法律责任.如有侵权/违法内容,本站将立刻删除。