java 中的原始类型与原始封装类型
2021-04-18 04:27
标签:常见 java 类型 bool integer boolean character long 两种 Java 提供两种不同的类型:引用类型和原始类型(或内置类型)。比如:Int是java的原始数据类型,Integer是java为int提供的封装类。Java为每个原始类型提供了封装类,常见的原始与对应的封装类如下: java 中的原始类型与原始封装类型 标签:常见 java 类型 bool integer boolean character long 两种 原文地址:https://www.cnblogs.com/shuai7boy/p/13296579.html
原始类型 封装类
boolean Boolean
char Character
byte Byte
short Short
int Integer
long Long
float Float
double Double
文章标题:java 中的原始类型与原始封装类型
文章链接:http://soscw.com/index.php/essay/76177.html