包装类
Posted xzwx668
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了包装类相关的知识,希望对你有一定的参考价值。
int Integer
char character
byte Byte
short Short
long Long
float Float
double Double
boolean Boolean
public class PackagingClass { public static void main(String[] args) { int num=5; String s=num+" ";//将基本数据类型转换为String System.out.println(s); Integer integer=new Integer(1);//装箱 System.out.println(integer);//重写了toString方法 Integer in = new Integer("1");//装箱 System.out.println(in); Integer int1=Integer.valueOf(16);//装箱 System.out.println(int1); int num1=in;//拆箱 System.out.println(num1); } }
以上是关于包装类的主要内容,如果未能解决你的问题,请参考以下文章