-
JDK1.5之后基本类型和相应的包装器类型的自动打包和解包
普通类 -
- 支持
- 批判
- 提问
- 解释
- 补充
- 删除
-
-
介绍
对于java中的基本类型和相应的包装器类型,JDK1.5之后提供了自动打包和自动解包功能。也就是说,对于int和Integer类型,他们之间可以相互赋值。
-
举例
package test;
public class Test {
public static void main(String args[]) {
Integer i = new Integer(100);
// 把 Integer型变量 赋给 基本类型 int
int ii = i;
int jj = 200;
// 把基本类型 int 赋给 Integer型变量
Integer j = jj;
System.out.println("ii:" + ii);
System.out.println("j:" + j);
}
} -
-
- 标签:
- 自动打包
- jj
- public
- test
- 自动解包
- 介绍
- 学习元
- integer
- 变量
- int
- 自动
- 类型
-
学习元评论 (0条)
聪明如你,不妨在这 发表你的看法与心得 ~