Home > Microsoft .Net Development Tips > C# Development > The builder pattern
Win Development Tips:
EMAIL THIS
 TIPS & NEWSLETTERS TOPICS 

C# DEVELOPMENT

The builder pattern


Ashish Jaiman
02.14.2003
Rating: --- (out of 5)


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   


Let other users know how useful this tip is by rating it below. Got a tip or code of your own you'd like to share? Submit it here!


The builder pattern allows a client object to construct a complex object by specifying only its type and content. The client is shielded from the details of the object's construction. It is a pattern for step-by-step creation of a complex object so that the same construction process can create different representations. It is the routine in the builder pattern that also makes for finer control over the construction process. All the different builders generally inherit from an abstract builder class that declares the general functions to be used by the director to let the builder create the product in parts.

Builder has a similar motivation to the abstract factory but, whereas in that pattern the client uses the abstract factory class methods to create its own object, in builder the client instructs the builder class on how to create the object and then asks it for the result. How the class is put together is up to the builder class. It's a subtle difference.

The builder pattern is applicable when the algorithm for creating a complex object should be independent of the parts that make up the object and how they are assembled, and the construction process must allow different representations for the object that's constructed.

Example

Below is an example of creating a house. The clients asks the director (CDirector class) to create a house by calling BuildHouse method, which takes a boolean parameter (blnBackyard). The director then creates an apartment (Concrete Builder) if the blnBackyard is false or a single family home (Concrete Builder) if the blnBackyard is true (both of them implements IHouse interface) and returns IHouse (Abstract Builder) Interface. The director does the complex building of a house and the client gets back IHouse interface that it codes against without worrying about the creation of house, rooms, backyard, etc.

Diagram

VB.NET implementation

Imports System
Imports System.Collections
Imports Microsoft.VisualBasic
Public Interface IHouse
Function GetBackyard() As Boolean
Function NoOfRooms() As Long
Function Discription() As String
End Interface

Public Class CApt
Implements IHouse
Private blnBackYard As Boolean
Private Rooms As Hashtable

Sub New()
Dim room As CRoom
Rooms = New Hashtable()
room = New CRoom()
room.RoomName = "Master Bedroom"
Rooms.Add("room1", room)
room = New CRoom()
room.RoomName = "Second Bedroom"
Rooms.Add("room2", room)
room = New CRoom()
room.RoomName = "Living Room"
Rooms.Add("room3", room)
blnBackYard = False
End Sub

Public Function GetBackyard() As Boolean Implements IHouse.GetBackyard
GetBackyard = blnBackYard
End Function 

Public Function NoOfRooms() As Long Implements IHouse.NoOfRooms
NoOfRooms = Rooms.Count
End Function 

Public Function Discription() As String Implements IHouse.Discription
Dim myEnumerator As IDictionaryEnumerator = Rooms.GetEnumerator
Dim strDiscription As String
strDiscription = "This is an Apartment with " & Rooms.Count & " Rooms " & vbLf
strDiscription = strDiscription & "This Apartment doesn't have a backyard" & vbLf
With myEnumerator
While .MoveNext
strDiscription = strDiscription & vbLf & .Key & vbTab & .Value.RoomName
End While
End With 

Discription = strDiscription
End Function
End Class 

Public Class CSFH
Implements IHouse
Private blnBackYard As Boolean
Private Rooms As Hashtable

Sub New()
Dim room As CRoom
Rooms = New Hashtable()
room = New CRoom()
room.RoomName = "Master Bedroom"
Rooms.Add("room1", room)
room = New CRoom()
room.RoomName = "Second Bedroom"
Rooms.Add("room2", room)
room = New CRoom()
room.RoomName = "Third Room"
Rooms.Add("room3", room)
room = New CRoom()
room.RoomName = "Living Room"
Rooms.Add("room4", room)
room = New CRoom()
room.RoomName = "Guest Room"
Rooms.Add("room5", room)
blnBackYard = True
End Sub 

Public Function GetBackyard() As Boolean Implements IHouse.GetBackyard
GetBackyard = blnBackYard
End Function 

Public Function NoOfRooms() As Long Implements IHouse.NoOfRooms
NoOfRooms = Rooms.Count
End Function 

Public Function Discription() As String Implements IHouse.Discription 
Dim myEnumerator As IDictionaryEnumerator = Rooms.GetEnumerator
Dim strDiscription As String
strDiscription = "This is an Single Family Home with " & Rooms.Count & " Rooms " & vbLf
strDiscription = strDiscription & "This house has a backyard" & vbLf
With myEnumerator
While .MoveNext
strDiscription = strDiscription & vbLf & .Key & vbTab & .Value.RoomName
End While
End With 

Discription = strDiscription
End Function
End Class 

Public Interface IRoom
Property RoomName() As String
End Interface 

Public Class CRoom
Implements IRoom
Private mstrRoomName As String
Public Property RoomName() As String Implements IRoom.RoomName
Get
RoomName = mstrRoomName
End Get
Set(ByVal value As String)
mstrRoomName = value
End Set
End Property
End Class 

Public Class CDirector
Public Function BuildHouse(ByVal blnBackyard As Boolean) As IHouse
If blnBackyard Then
BuildHouse = New CSFH()
Else
BuildHouse = New CApt()
End If
End Function
End Class 

Public class Client
Public Shared Sub Main(ByVal args() as String) 
Dim objDirector As New CDirector()
Dim objHouse as IHouse
objHouse = objDirector.BuildHouse(args(0)) 
With objHouse
Console.WriteLine(.Discription)
End With
End sub
End class


Source: DotNetExtreme.com

Rate this Tip
To rate tips, you must be a member of SearchWinDevelopment.com.
Register now to start rating these tips. Log in if you are already a member.




Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us   



RELATED CONTENT
C# Development
Let Microsoft StyleCop tame your wild C#
Picking a .NET smart client communications technology
LINQ beyond queries: Strong-typed refection
Book excerpt: An introduction to DSL tools
Assembly versioning in the .NET Framework 2.0
Book excerpt: Creating graphical output using the .NET Compact Framework
On Extension Methods in C# and .NET Framework 3.5
Generate RSA public and private keys, export to XML
Book excerpt: Upgrading to Visual Studio 2005
Learning .NET: Tips for getting started with .NET development

Visual Basic and Visual Basic .NET
Compose XML more quickly using Visual Basic 9
Virtualization keeps Legacy Apps alive
VB 9 Anonymous Types help create flexible objects
Visual Studio Team System Add-ins: Conchango Scrum for Team System and Scrum Dashboard
Book Excerpt: Sams Teach Yourself Visual Basic 2008 in 24 Hours -- Complete Starter Kit
Check out CodePlex for a ton of interesting .NET projects
Book excerpt: Murach's VB 2008
Book excerpt: Printing in Visual Basic 2005
Visual Basic 2008 and closures
WinForms development using SQL Server 2005 and Visual Basic 2005

C# programming language
Mono 2.0 moves .NET apps to Linux - includes migration analyzer
LINQ beyond queries: Strong-typed refection
Assembly versioning in the .NET Framework 2.0
Book excerpt: Creating graphical output using the .NET Compact Framework
Visual Studio 2008 Learning Guide: C# 3.0
Simonyi firm to address divide between domain experts and developers
On Extension Methods in C# and .NET Framework 3.5
Generate RSA public and private keys, export to XML
Book excerpt: Upgrading to Visual Studio 2005
Learning .NET: Tips for getting started with .NET development

RELATED GLOSSARY TERMS
Terms from Whatis.com − the technology online dictionary
C#  (SearchWinDevelopment.com)
GLib  (SearchWinDevelopment.com)

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary

DISCLAIMER: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.



Database Programming Solutions - .NET XML, Visual Studio LINQ, ORM .NET
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2000 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts