CSC/ECE 517 Summer 2008/wiki2 6 cc: Difference between revisions

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


    Cohesion is categorized in “high” and “low” but  it is “measured” by how strongly-related or focused the responsibilities are for the class. In a highly-cohesive system, code readability and reusability is increased while complexity is kept manageable. A class of high cohesiveness could decrease its “cohesiveness” by carrying out more varied activities that have little in common and increasing complexity.
Cohesion is categorized in “high” and “low” but  it is “measured” by how strongly-related or focused the responsibilities are for the class. In a highly-cohesive system, code readability and reusability is increased while complexity is kept manageable. A class of high cohesiveness could decrease its “cohesiveness” by carrying out more varied activities that have little in common and increasing complexity.


=== Types of Cohesion ===
=== Types of Cohesion ===

Revision as of 01:21, 25 June 2008

Cohesion and coupling. Cohesion and coupling are concepts that are reasonably easy to understand, but nonetheless, it is worthwhile to gather readable illustrations of where they apply. Browse the hundreds of Web pages that attempt to explain these concepts, picking your favorite examples. Categorize these examples, so that the reader will see the big picture, rather than just a set of redundant illustrations. Many of these pages mention related concepts; list some of them and explain how they relate to cohesion and coupling.


Introduction

Cohesion is a measure of how strongly-related and focused the various responsibilities of a software module are. It is usually expressed as “high” or “low” cohesion when being discussed. High cohesion is desired because it is robust, reliable, reusable and more understandable whereas low cohesion has the opposite of those traits – difficult to maintain, test,reuse and understand. With high cohesion comes low coupling. Coupling is the degree of dependence of internal implementation between different modules – low coupling is where the module doesn't depend on what other module's internal implementation does thus a change in them won't affect the module whereas high coupling is where a change in one module might “break” other modules because they are highly dependent on eachother's internal implementations. This page will show you different types of cohesion and coupling and examples showing the “big picture” of them.

Cohesion

Cohesion is categorized in “high” and “low” but it is “measured” by how strongly-related or focused the responsibilities are for the class. In a highly-cohesive system, code readability and reusability is increased while complexity is kept manageable. A class of high cohesiveness could decrease its “cohesiveness” by carrying out more varied activities that have little in common and increasing complexity.

Types of Cohesion

The types below are in order from "Highest" to "Lowest"

Functional Cohesion

Functional cohesion describes a module that is designed to perform one and only one task. A functionally cohesive module may contain multiple methods, but all of these methods are designed to help the user achieve a single task. The following example illustrates functional cohesion.

 public class Stack 
 {
   public Stack()   
   {
     // implementation
   }
   
   public void push(Object obj)
   {
     // implementation
   }
   
   public Object pop()
   {
     // implementation
   }
   
   public int getSize()
   {
     // implementation
   }
 }
  
Sequential Cohesion

Sequential cohesion describes modules whose operations are intended to executed in sequence with the output of each operation providing input to the subsequently executed operation. The following example illustrates sequential cohesion [1].

 public class PayCheckCalculator()
 { 
   public float CalculateBenefitsDeducations(float payAmount)
   {
     // implementation details
   }
   
   public float CalculateFedDeducations(float payAmount)
   {
     // implementation details
   }
   
   public float CalculateStateDeductions(float payAmount)
   {
     // implementation details
   }
   
   public float CalculateRetirementDeductions(float payAmount)
   {
     // implementation details
   }
 }
   class Cube {
      public ArrayList getInfo(){ 
             ArrayList tempList = new ArrayList();
             tempList.add(getArea());
             tempList.add(getVolume());
             return tempList;
      }
      public double getArea(){return 6*side*side;} 
      public double getVolume(){return side*side*side;}
   }
Information cohesion

Information cohesion can do several things with the same data - a class with various methods using same data.

    class Circle {
         double radius;	      
         public double getArea(){return 3.14*radius*radius;}
         public double getDiameter(){return 2 * radius;}
         public double getCircumference(){return 3.14*2*radius;}
    }
Communicational Cohesion

Communicational cohesion describes modules that perform multiple operations on the same input or output data [1]. The following example illustrates communication cohesion [2].

 public class CustomerInformation
 {
   public CustomerInformation(int accountNum)
   {
     // implementation details
   }
   
   public String getName()
   {
     // implementation details
   }
   
   public float getBalance()
   {
     // implementation details
   }
   
   // ...
 }
Procedural Cohesion

Procedural cohesion is similar to sequential cohesion in that the operations exposed are typically grouped because they are executed within a sequence. Unlike sequential cohesion however, the operations within a procedurally cohesive module can be somewhat unrelated and output from one operation is not necessarily use as input to a following operation. The following example illustrates procedural cohesion.

 public class Student
 {
   public Student(int studentId)
   {
     // implementation details
   }
   
   public void LoadStudent()
   {
     // implementation details
   }
   
   public void UpdateGrades(int[] grades)
   {
     // implementation details
   }
   
   public void UpdateAttendance(Date[] dates)
   {
     // implementation details
   }
   
   public void SaveStudent()
   {
     // implementation details
   }
 }
Temporal Cohesion

Temporal cohesion describes a module that has several operations grouped by the fact that the operations are executed within temporal proximity. The following example illustrates temporal cohesion.

 public class Startup
 {
   public void InitializeLogging()
   {
     // implementation details
   }
   
   public void InitializeUI()
   {
     // implementation details
   }
   
   public void InitializeDb()
   {
     // implementation details
   }
 }
Logical Cohesion

Logical cohesion describes a module that groups operations because categorically they are related but the operations themselves are quite different. Typically, these modules accept a control flag which indicates which operation to execute. The following example illustrates logical cohesion [2].

 public class DataStore
 {
   public void SaveData(int destination, byte[] data)
   {
     switch (destination)
     {
       default:
       case 0:
         SaveToDb(data)
         break;
       
       case 1:
         SaveToFile(data)
         break;
       
       case 2:
         SaveToWebService(data)
         break;
     }
   }
   
   protected void SaveToDb(byte[] data)
   {
     // implementation details
   }
   
   protected void SaveToFile(byte[] data)
   {
     // implementation details
   }
   
   protected void SaveToWebService(byte[] data)
   {
     // implementation details
   }
 }
Coincidental Cohesion

Coincidental cohesion describes a module whose operations are unrelated to one another and the module itself can be used to achieve several different types of tasks. typically used to accomplish several unrelated tasks. The following example illustrates coincidental cohesion [1].

 public static class Math
 {
   public static int Add(int a, int b)
   {
     // implementation details
   }
   
   public static int Subtract(int a, int b)
   {
     // implementation details
   }
   
   // ...
 }

References

  1. http://blogs.ittoolbox.com/eai/implementation/archives/design-principles-cohesion-16069
  2. http://www.waysys.com/ws_content_bl_pgssd_ch06.html
  3. http://www.site.uottawa.ca:4321/oose/index.html#cohesion
  4. http://javaboutique.internet.com/tutorials/coupcoh/index-2.html
  5. http://bmrc.berkeley.edu/courseware/cs169/spring01/lectures/objects/sld001.htm