常量的定义
c# 使用const

const int a = 1;

java 使用final

final int a =1;