Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Creational Patterns - Builder
Search
Chris Bushell
December 03, 2008
Programming
1
79
Creational Patterns - Builder
Prepared for the Melbourne Patters Group
Chris Bushell
December 03, 2008
Tweet
Share
More Decks by Chris Bushell
See All by Chris Bushell
Test Automation for Packaged Systems: Yes You Can!
cbushell
0
63
Introduction to Pair Programming
cbushell
1
120
An Introduction to BDD
cbushell
5
170
An Introduction to HTTP
cbushell
2
130
Agile Test Automation
cbushell
2
180
Working Effectively With Legacy Code
cbushell
4
250
Jasmine, BDD for JavaScript
cbushell
1
130
Branches Are For Trees. How to Develop Software Without Them
cbushell
1
110
State Pattern From GoF
cbushell
1
68
Other Decks in Programming
See All in Programming
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
510
Go Conference mini in Sendai 2026 : Goに新機能を提案し実装されるまでのフロー徹底解説
yamatoya
0
560
RubyとGoでゼロから作る証券システム: 高信頼性が求められるシステムのコードの外側にある設計と運用のリアル
free_world21
0
260
How to stabilize UI tests using XCTest
akkeylab
0
110
Rで始めるML・LLM活用入門
wakamatsu_takumu
0
170
AI時代でも変わらない技術コミュニティの力~10年続く“ゆるい”つながりが生み出す価値
n_takehata
2
720
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
260
野球解説AI Agentを開発してみた - 2026/02/27 LayerX社内LT会資料
shinyorke
PRO
0
120
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
830
Claude Code の Skill で複雑な既存仕様をすっきり整理しよう
yuichirokato
1
360
Claude Codeログ基盤の構築
giginet
PRO
7
2.8k
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.5k
Featured
See All Featured
The Pragmatic Product Professional
lauravandoore
37
7.2k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
Discover your Explorer Soul
emna__ayadi
2
1.1k
How to Create Impact in a Changing Tech Landscape [PerfNow 2023]
tammyeverts
55
3.3k
Leo the Paperboy
mayatellez
4
1.5k
The Limits of Empathy - UXLibs8
cassininazir
1
250
Exploring anti-patterns in Rails
aemeredith
2
290
RailsConf 2023
tenderlove
30
1.4k
Unsuck your backbone
ammeep
672
58k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
360
30k
Skip the Path - Find Your Career Trail
mkilby
1
76
Transcript
Crea%onal Pa+erns -‐ Builder Melbourne Pa+erns Group Dec 3
2008 Chris Bushell
Intent “Separate the construc%on of a complex object
from its representa%on so that the same construc%on process can create different representa%ons”
Applicability • Separate representa%on of an object from its
construc%on • Construc%on of object follows a definable algorithm • Different objects can be created following the same algorithm
Example • Build vehicle – Build engine – Build
chassis – A+ach engine to chassis – Build wheels – A+ach wheels to chassis Road car, F1 car, Airplane, ForkliQ truck etc.
Par%cipants
Code
Builder Vs. Abstract Factory • Builder
– Focus on process of crea%ng product by following an algorithm – Product is return as final step • Abstract Factory – Focus on building families of object