📄 autoboxdemo.java
字号:
/**
* autoBox
*/
public class AutoBoxDemo{
/**
* 1.5以前的写发
*/
public static void Show(Integer intObject){
System.out.println(intObject);
}
public static void Show1(){
Show(new Integer(8));
}
/**
* 1.5的写法
*/
public static void autoBox(Integer intObject){
System.out.println(intObject) ;
}
public static void autoBoxRef(){
autoBox(8) ;
}
public static void main(String[] args){
Show1();
autoBoxRef();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -