本笔记是摘与Hava白皮书上面的内容,用来给自己做提醒的,因此大概并不适合Java的学习者作为笔记参考使用。
以我的水平现在还看不懂这个。。。
一。基础知识篇
1.常量
final关键字指示常量,只能够被赋值一次。习惯上,常量名使用全大写。
final double n=10;
1.1 类常量
在Java中,希望某个常量可以在一个类的多个方法中使用。可以使用关键字static final设置一个类常量。
例如:
public cl ass Constants〗 { public static final double CM_PER_INCH = 2.54;//定义在main方法外部 public static void main(Stringn args) { double paperWidth = 8.5; double paperHeight = 11; System.out.println("Paper size in centimeters: " + paperWidth * CMJERJNCH + by " + paperHeight * CM_PER_INCH) ; } }