Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions java/innerClass/staticFinalClass.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// インナークラスのアクセス修飾子について
// メソッドの戻り値にMapを使っていたところ、
// Keyの指定がヤバイ、Nullチェックがしにくいとかの理由でインナークラスを使うことになった

public class DrCount {
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

親クラスの参照を持つ必要はなさそうなので static な方が良さそうです。
また、 final にしておくと完全に Immutable にできてばっちりですね:)

private final int uniqueSystemCount;
private final int uniqueDcfDrCdCount;

public DrCount(final int uniqueSystemCount, final int uniqueDcfDrCdCount) {
this.uniqueSystemCount = uniqueSystemCount;
this.uniqueDcfDrCdCount = uniqueDcfDrCdCount;
}

public int getUniqueSystemCount() {
return uniqueSystemCount;
}
public int getUniqueDcfDrCdCount() {
return uniqueDcfDrCdCount;
}
}