?? convention.java
字號:
//convention.java
class Convention
{
public static void main( String args[ ] )
{
byte bByte = 2;
char cChar = 'c';
int nInt = 10;
float fFloat = 3.5f;
double dDouble = 1.234;
//float OP byte ->float
float fFloatNew = fFloat + bByte;
//char OP int ->int
int nIntNew = cChar + nInt;
//float OP double ->double
double dDoubleNew = fFloatNew/nInt;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -