CSC/ECE 517 Fall 2007/wiki3 3 ab: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
Line 7: Line 7:


===Principle of Separation of Responsibility===
===Principle of Separation of Responsibility===
There are several principles of Separation of Responsibility [1]:
* Different responsibilities should be divided among different objects.
* Encapsulation. One class should be responsible for knowing and maintaining a set of data, even if that data is used by many other classes. In another word, Data should be kept in only one place.
* Expert pattern. The object that contains the necessary data to perform a task should be the object that manipulates the data.
* The Dry principle. Code should not be duplicated. A given functionality should be implemented only in one place in the system.


==Reference==
==Reference==

Revision as of 01:51, 17 November 2007

Topic

Take the principle of Separation of Responsibility and catalog the information on it available on the Web. Find good descriptions and good, concise, understandable examples. Tell which you consider the best to present to a class.

Introduction

Separation of Responsibility

In Object-Oriented Design (OOD), each individual object should have as few responsibilities as possible, ideally one responsibility per object. That is to say,

Principle of Separation of Responsibility

There are several principles of Separation of Responsibility [1]:

  • Different responsibilities should be divided among different objects.
  • Encapsulation. One class should be responsible for knowing and maintaining a set of data, even if that data is used by many other classes. In another word, Data should be kept in only one place.
  • Expert pattern. The object that contains the necessary data to perform a task should be the object that manipulates the data.
  • The Dry principle. Code should not be duplicated. A given functionality should be implemented only in one place in the system.

Reference

  1. Elegance and classes
  2. [1]
  3. [2]
  4. [3]
  5. Java by Experience
  6. OO Programming By Example
  7. Benefits of the Three-Tiered Architecture