Answer Posted / swetha
Factory Design Pattern is a simple decision making class
that returns one of several objects depending on the data
provided. It comes under creational type of design pattern.
Example:
Suppose say that want to write the code to perform
arithmetic calculations. Initially you decided to write code
for only Addition and Subtraction. And later on you decided
to add more functionality by including Multiplication and
Division. Now, if you don't use Factory Design Pattern, we
need to change the entire code to include additional
functionality. But, when we use Factory Design Pattern, It
is easy to add additional functionality when needed without
disturbing previous code.
In factory class we create the instance of the classes
addition, subtraction, division and multiplication based on
the operator selected.
In this way Factory Design Pattern is useful.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
How we can force all the validation controls to run?
Can viewstate be accessed in another page?
How to use a Master Database in Asp.net?
Can the validation occurs in server-side or client-side? If the validation occurs why should we do?
What is difference between web api and web services?
What is difference between mvc and asp.net? : Asp.Net MVC
Can you change a master page dynamically at runtime? How?
What type of code, client-side or server-side, is found in a code-behind file of a Web page?
What do you mean by serialize?
When maintaining session through sql server, what is the impact of read and write operation on session objects?
How do I create a web form?
What is localhost in asp.net?
What is _dopostback in asp net?
Can I have a unique key as foreign key?
What is recordset asp?