25_包装类
Posted bajiaotai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了25_包装类相关的知识,希望对你有一定的参考价值。
1.概念
2.基本数据类型与包装类
、
3.装箱
4.拆箱
、
5.基本数据类型与字符串
6.包装类代码案例
package JavaBasicReview; public class JavaGrammer { public static void main(String[] args) { //Java提供了两种类型系统,基本数据类型、引用数据类型 //基本数据类型:4类8种,每种都有对应的包装类 byte b = 1;new Byte("99"); short s;new Short("88"); int i;new Integer("77"); long l;new Long("66"); double d;new Double("1.2"); float f;new Float("1.2"); boolean bo;new Boolean("true"); char c;new Character(‘a‘); //装箱及自动装箱(以int为例),将int2Integer Integer integer = new Integer(199); integer = 199; //拆箱及自动拆箱,将Integer2int int i1 = integer.intValue(); i1 = integer; //基本数据类型2string String intstr = 199+""; intstr = String.valueOf(199); //string2基本数据类型 int i2 = new Integer("1999"); i2 = Integer.parseInt("199"); } }
以上是关于25_包装类的主要内容,如果未能解决你的问题,请参考以下文章
初识八大基本数据类型的包装类——Java面向对象基础(25)