重複の可能性:
Java final 修飾子
これは好みに関するちょっとした質問です。final 修飾子の正しい使い方は何ですか?
ソースからソースに行くと、他の人よりもそれを使用する傾向があることに気付きました. メソッドのパラメーター、メソッド内の変数、および可能な限りのものに配置します。それは必要ですか、それとも私がやり過ぎているだけですか?
参照:
private final int x;
private final int y;
private final int id;
private final int width;
private final int height;
public Widget(final int id, final int x, final int y, final int width, final int height) {
this.id = id;
this.x = x;
this.y = y;
this.xmod = x;
this.ymod = y;
this.width = width;
this.height = height;
}