Skip to content

Latest commit

 

History

History
executable file
·
15 lines (9 loc) · 190 Bytes

File metadata and controls

executable file
·
15 lines (9 loc) · 190 Bytes

整型

int / short / long / byte

int age = 40;

在 Java 中,使用关键字 final 指示常量。习惯上,常量名全大写。

final int MAX_VALUE = 100;