?? testdatatype.java
字號:
public class TestDatatype{
public static void main(String args[]){
double d=0.7e-3;
int i=100;
byte b=7;
Double dd=new Double(d);
Integer ii=new Integer(i);
Byte bb=new Byte(b);
System.out.println(dd.toString());
System.out.println(ii.toString());
System.out.println(ii.doubleValue());
System.out.println(dd.doubleValue());
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -