タグ付けされた質問 「builder-pattern」


11
効果的なJavaのビルダーパターン
私は最近、Joshua BlochによるEffective Javaを読み始めました。Builderパターン[本の項目2]のアイデアは本当に興味深いものでした。プロジェクトに実装しようとしましたが、コンパイルエラーが発生しました。以下は本質的に私がやろうとしていたことです: 複数の属性を持つクラスとそのビルダークラス: public class NutritionalFacts { private int sodium; private int fat; private int carbo; public class Builder { private int sodium; private int fat; private int carbo; public Builder(int s) { this.sodium = s; } public Builder fat(int f) { this.fat = f; return this; } public …

11
IntelliJでのビルダーパターンコードの生成
IntelliJでBuilderパターンの記述を自動化する方法はありますか? たとえば、次の単純なクラスがあるとします。 class Film { private String title; private int length; public void setTitle(String title) { this.title = title; } public String getTitle() { return this.title; } public void setLength(int length) { this.length = length; } public int getLength() { return this.length; } } IDEにこれまたは同様のものを生成させる方法はありますか? public class FilmBuilder { Film …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.