CSC/ECE 517 Fall 2011/ch7 7d df: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
=DesignPatters=
=DesignPatters=
==Introduction==
==Introduction==
In Software Engineering, Anti-Patters are a class of patterns that may appear to improve code at first but end up hindering it in the long run.  While a pattern can be looked at as a solution to a problem, and anti-pattern is considered a <i>bad</i> solution to a problem.  The name anti-patern was coined by Andrew Koenig in response to the book, Design Patterns, by Gang of Four but was not commonplace until the book, AntiPatterns.  In the book, the authors had written about many bad design decisions they had seen used over and over in the workplace.  An anti-pattern is not to be confused with bad programming habits.  There are two main distinctions between an anti-pattern and bad programming.  First, for a bad idea to be an anti-pattern, it has to have some sort of structure and is reusable and second, the anti-pattern has to have a well documented, correct solution.  Listed below are some of the most common anti-patterns.
In Software Engineering, an Anti-Pattern is a type of pattern that, at first, may appear to solve a problem but ends up hindering it in the long run.  While a pattern can be looked at as a solution to a problem, and anti-pattern is considered a bad solution to a problem.  The name anti-patern was coined by Andrew Koenig in response to the book, Design Patterns, by Gang of Four. However, the term did not become commonplace until after the book, AntiPatterns, came out.  In the book, the authors had outlines a few patterns that were fairly common in the workplace that they saw as an anti-pattern.  An anti-pattern is not to be confused with bad programming habits.  There are two main distinctions between an anti-pattern and bad programming.  First, for a bad idea to be an anti-pattern, it has to have some sort of structure and is reusable and second, the anti-pattern has to have a well documented, correct solution.  Anti-Patterns can be found not only in programming but a number of different areas in the design process.  Because of this, anti-patters can fall into different groups such as Organizational, Project Management, Software Design, and Programming.    Listed below are a select few of the many Anti-Patterns that exist.


==BaseBean==
==Organizational Anti-Patterns==
A BaseBean is an object where concrete entities have subclassed itAs you may know from class, subclassing does not always exhibit good program designSubclassing causes the subclass to rely too heavily on the superclassIf the super class were to change, it could break something in the subclass.  A class should not subclass another class just because there is similar codeRather, the classes should interact using delegation.
===Cash Cow===
A Cash Cow is a product that makes up the majority of a companies profitsThe problem with Cash Cows is they may be making a great deal of money for the money now, but may later fall out of popularity due to newer or better technologyThe sheer popularity of the product can sometimes hinder the development of newer alternativesTake for example the company RIM, the maker of the BlackBerry line of smartphones.  A couple years ago RIM's BlackBerry smartphones were considered cash cows.  RIM was dominating the market.  Over the years, new players have come into the market with revolutionary ideas and have been slowly eating away at RIMs marketshareDuring this same time, BlackBerry smartphones have changed little.  Their management had been blinded by the sheer success of their products that they allowed others to come in and take that success away from them.


==Call Super==
==Project Management==
===Over Engineering===
Over Engineering is when a product is made more complex than is practical.  This results in a waste of time and resources.  For instance, a push lawnmower with 100 HP would be a product of over engineering.  A lawnmower with a tenth of that power would work just as well without all the time and money spent upping the Horse Power.
 
==Software Design==
A Software Design Anti-Pattern is an Anti-Pattern that deals with the big picture of a program and how all the different classes work together.
===BaseBean===
A BaseBean is a class where concrete entities have subclassed it.  As you may know from class, subclassing does not always exhibit good program design.  Subclassing causes the subclass to rely too heavily on the superclass.  If the super class were to change, it could break something in the subclass.  A class should not subclass another class just because there is similar code.  Rather, the classes should interact using delegation.
 
===Call Super===
Call Super is similar to BaseBean in which one class subclasses another.  The different is, in Call Super, the superclass requires the subclass to override a method in order for it to function.  The fact that this is required makes this an anti-patern.  The solution to this problem is to use the Template Method Pattern.  The Template Method pattern separates the superclass method into two distinct methods.  The first method executes all of the needed code by the subclass and then delegates the part that needs to be subclassed into an abstract method.  That way the superclass is able to separate out the information that needs to be accessed by the subclass and the method that needs to be overridden.
Call Super is similar to BaseBean in which one class subclasses another.  The different is, in Call Super, the superclass requires the subclass to override a method in order for it to function.  The fact that this is required makes this an anti-patern.  The solution to this problem is to use the Template Method Pattern.  The Template Method pattern separates the superclass method into two distinct methods.  The first method executes all of the needed code by the subclass and then delegates the part that needs to be subclassed into an abstract method.  That way the superclass is able to separate out the information that needs to be accessed by the subclass and the method that needs to be overridden.
==programming==

Revision as of 04:56, 2 December 2011

DesignPatters

Introduction

In Software Engineering, an Anti-Pattern is a type of pattern that, at first, may appear to solve a problem but ends up hindering it in the long run. While a pattern can be looked at as a solution to a problem, and anti-pattern is considered a bad solution to a problem. The name anti-patern was coined by Andrew Koenig in response to the book, Design Patterns, by Gang of Four. However, the term did not become commonplace until after the book, AntiPatterns, came out. In the book, the authors had outlines a few patterns that were fairly common in the workplace that they saw as an anti-pattern. An anti-pattern is not to be confused with bad programming habits. There are two main distinctions between an anti-pattern and bad programming. First, for a bad idea to be an anti-pattern, it has to have some sort of structure and is reusable and second, the anti-pattern has to have a well documented, correct solution. Anti-Patterns can be found not only in programming but a number of different areas in the design process. Because of this, anti-patters can fall into different groups such as Organizational, Project Management, Software Design, and Programming. Listed below are a select few of the many Anti-Patterns that exist.

Organizational Anti-Patterns

Cash Cow

A Cash Cow is a product that makes up the majority of a companies profits. The problem with Cash Cows is they may be making a great deal of money for the money now, but may later fall out of popularity due to newer or better technology. The sheer popularity of the product can sometimes hinder the development of newer alternatives. Take for example the company RIM, the maker of the BlackBerry line of smartphones. A couple years ago RIM's BlackBerry smartphones were considered cash cows. RIM was dominating the market. Over the years, new players have come into the market with revolutionary ideas and have been slowly eating away at RIMs marketshare. During this same time, BlackBerry smartphones have changed little. Their management had been blinded by the sheer success of their products that they allowed others to come in and take that success away from them.

Project Management

Over Engineering

Over Engineering is when a product is made more complex than is practical. This results in a waste of time and resources. For instance, a push lawnmower with 100 HP would be a product of over engineering. A lawnmower with a tenth of that power would work just as well without all the time and money spent upping the Horse Power.

Software Design

A Software Design Anti-Pattern is an Anti-Pattern that deals with the big picture of a program and how all the different classes work together.

BaseBean

A BaseBean is a class where concrete entities have subclassed it. As you may know from class, subclassing does not always exhibit good program design. Subclassing causes the subclass to rely too heavily on the superclass. If the super class were to change, it could break something in the subclass. A class should not subclass another class just because there is similar code. Rather, the classes should interact using delegation.

Call Super

Call Super is similar to BaseBean in which one class subclasses another. The different is, in Call Super, the superclass requires the subclass to override a method in order for it to function. The fact that this is required makes this an anti-patern. The solution to this problem is to use the Template Method Pattern. The Template Method pattern separates the superclass method into two distinct methods. The first method executes all of the needed code by the subclass and then delegates the part that needs to be subclassed into an abstract method. That way the superclass is able to separate out the information that needs to be accessed by the subclass and the method that needs to be overridden.

programming