Tagged Questions
The builder-pattern tag has no wiki summary.
22
votes
7answers
15k views
What is the difference between Builder Design pattern and Factory Design pattern?
What is the difference between the Builder design pattern and the Factory design pattern? Which is more advantageous? I want to test and compare/contrast these patterns How do I represent my findings ...
13
votes
9answers
837 views
Where would you use a Builder Pattern instead of an Abstract Factory?
I've seen this question rise here and there a few times, but I never found and answer I was happy with.
From Wikipedia:
Builder focuses on constructing a complex object step by step. Abstract ...
11
votes
7answers
894 views
How to improve the builder pattern?
Motivation
Recently I searched for a way to initialize a complex object without passing a lot of parameter to the constructor. I tried it with the builder pattern, but I don't like the fact, that I'm ...
9
votes
2answers
421 views
Java Builder generator problem
In a project of mine I have two packages full of DTOs, POJOs with just getters and setters. While it's important that they are simple java beans (e.g. because Apache CXF uses them to create Web ...
7
votes
5answers
1k views
Builder Pattern in Effective Java
I have recently started to read Effective Java by Joshua Bloch. I found the idea of the Builder pattern [Item 2 in the book] really interesting. I tried to implement it in my project but there were ...
7
votes
7answers
870 views
Builder pattern vs. config object
The builder pattern is popular to create immutable objects, but there is some programming overhead to create a builder. So I wonder why not to use simply a config object.
The usage of a builder would ...
7
votes
3answers
729 views
Builder vs Flyweight Pattern
What is the difference between Builder Pattern and Flyweight Pattern in terms of usage, as both of them deals with large number of objects?
6
votes
2answers
416 views
Automatic generation of immutable class and matching builder class
What tools/libraries exist that will take a struct and automatically generate an immutable wrapper and also a "builder" class for incrementally building new instances?
Example input:
struct Foo
{
...
5
votes
4answers
197 views
How to ensure that builder pattern is completed?
EDIT: I am not worried about being called in the wrong order since this is enforced through using multiple interfaces, I am just worried about the terminal method getting called at all.
I am using ...
5
votes
3answers
326 views
Is this a valid Java implementation of an immutable class and the Builder pattern?
The Builder implements Cloneable and overrides clone() and instead of copying every field of the builder, the immutable class keeps a private clone of the builder. This makes it easy to return a new ...
5
votes
4answers
363 views
What would be considered good examples of implementing the builder pattern when used in the development of a GUI?
I am a complete newbie when it comes to the use of factory classes and methods, patterns, etc - in fact I first learned of them here on Stackoverflow when browsing Java related questions :-)
In ...
4
votes
1answer
123 views
How to efficiently create and use the builder pattern
On our last project we ended up with a shared test fixture for our unit tests which gave a lot of problems. So on our current project I've looked into the builder pattern. We run our unit tests in ...
4
votes
1answer
275 views
Too many arguments in method calls
Lately I've been torn when trying writing classes regarding the number of parameters requested.
A very simple constructor example:
Burger(bun, meat, cheese, lettuce)
this.bun = bun
...
3
votes
3answers
57 views
Java: Builder pattern vs. logical grouped objects
I read this question on how to split large constructors in java. But I am not quite sure what I shall do in my case. The question suggests that a builder pattern is the better way to go but at the ...
3
votes
2answers
53 views
Inheriting a class which is built using a static inner class Builder
I have a Class A with quite a number of member variables. In order to make it immutable and validate the member variables during construction, I made its constructor private and used an inner public ...
2
votes
1answer
69 views
How can I use the builder pattern to construct various similar object types?
I am currently using the builder pattern as defined here:
Previous question showing my use of the builder pattern
The problem I've now encountered is a requirement to create the following structure:
...
2
votes
4answers
254 views
Can the builder pattern ever be doing too much?
I've been studying design patterns with a study group recently, and have come to understand that the builder pattern can be very useful for creating complex objects that are made up of many ...
2
votes
1answer
292 views
Why is Builder pattern better than a Constructor with arguments in the Class's object being created?
Why can we not the different build steps within the constructor itself.
if the build steps take arguments why can't they be provided as arguments to constructor and utilized within constructor to ...
2
votes
1answer
79 views
Psuedo-Backwards Builder Pattern?
In a legacy codebase I have a very large class with far too many fields/responsibilities. Imagine this is a Pizza object.
It has highly granular fields like:
hasPepperoni
hasSausage
hasBellPeppers
...
2
votes
1answer
156 views
Should a Test Data Builder construct defaults for it's non-primitives?
I've created a data builder in order to create test data in my unit tests. My data builders create defaults for all properties so that the tests that use them only need to specify the properties that ...
1
vote
3answers
121 views
Is there an better alternative to implement Builder Pattern in Scala?
I have to create an instance of class BenchmarkOption based on the command line arguments. I certainly use pojo style, but this is not immutable. So I use Builder Pattern of Java style. Here is the ...
1
vote
2answers
44 views
initialize a class loading data from file. is it a builder?
I am a newbie in design patterns.
I want to create an instance of a class, say ClassA, and set some of its fields to the values read from a config file.
If I keep distinct the code of the class from ...
1
vote
1answer
282 views
Unit testing Builder pattern with Moq
I'm using the builder pattern to generate viewmodels for the controller and when I was trying to unit test my controller I found myself unable to do so. Moq complains.
Not sure whether it's a Moq ...
1
vote
3answers
362 views
Joshua Bloch's Builder pattern and PMD warnings
I have written a class using Joshua Bloch's Builder pattern, which is similar to this Pizza example:
public class Pizza {
private int size;
private boolean cheese;
private boolean pepperoni;
...
1
vote
1answer
266 views
Creation of Builders in Builder Pattern
I want to clarify my use of the builder pattern, in particular how the type of builder is created. In examples, it just assumes the type of builder and creates it. However, I created a CreateBuilder ...
1
vote
2answers
338 views
Builder pattern and persistent state : Test Data Builders
Does anyone have any links to some code they like that shows a good example of this in c#?
As an example of bad code, here is what a builder I have now looks like. I'm trying to have a way to keep ...
1
vote
2answers
561 views
Does the Builder pattern replace the factory pattern?
I know this question is asked many times but I just want to clear more on this.
Can a builder pattern replace factory pattern.
Yes Builder pattern create and return a complex object step by step and ...
0
votes
1answer
77 views
what is wrong with this using generic implicit operator?
if I use implicit operator in non generic builder class every thing is ok:
public class ReligionBuilder
{
private Religion _religion;
public ReligionBuilder()
{
_religion = new ...
0
votes
1answer
123 views
When using the builder pattern in C++, is it advisable for the setters to return a reference to the builder object? [closed]
Possible Duplicate:
Builders in Java versus C++?
I am thinking of using the builder pattern in C++ unit tests, to streamline the creation of input data for the code being tested.
In Java ...
0
votes
1answer
103 views
Which code is more readable? [closed]
This isn't a difficult question. I simply want to know which of these two C++ code snippets you think is better (readability vs. length vs. boiler-platery):
Option #1
Entity* square = ...
0
votes
1answer
272 views
Builder Pattern in Ruby with YAML
I have an instance of the Builder pattern in my project right now. Currently, the supported output format is CSV, however I would now like to include YAML. Easy, I thought. I have all of the ...
0
votes
2answers
248 views
How do I create a builder in C# for an object that has properties that are referenc types?
I've started to construct a builder so that I can easily create test data for unit tests I am writing.
The basic structure of the builder is:
public class MyClassBuilder
{
public int id = 0; ...
0
votes
2answers
92 views
public class member visible to descendents
I have been getting a lot of traction from a builder pattern as a public class member of another class:
public class Part
{
public class Builder
{
public string Name { get; set; }
...