CSC/ECE 517 Fall 2007/wiki2 5 pr: Difference between revisions

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


http://209.85.165.104/search?q=cache:iXZrNJdMCK8J:rohan.sdsu.edu/~stewart/cs310-fall07/Ch03v2.0.ppt+Class+Responsibility+Collaboration+card+for+java&hl=en&ct=clnk&cd=1&gl=us
http://209.85.165.104/search?q=cache:iXZrNJdMCK8J:rohan.sdsu.edu/~stewart/cs310-fall07/Ch03v2.0.ppt+Class+Responsibility+Collaboration+card+for+java&hl=en&ct=clnk&cd=1&gl=us


==CRC concepts in Ruby==
==CRC concepts in Ruby==

Revision as of 01:20, 25 October 2007


Introduction

        Applying the object-oriented paradigm to the development of software requires individuals and teams to think and act differently than when designing procedural projects. While proponents of the object paradigm often say identifying objects is a simple and intuitive process, experienced developers know that this is not always true. The solution is the CRC (Classes, Responsibilities, Collaboration) Card method, a proven technique for identifying classes and visualizing and testing different class-based models during the design phase.


What is CRC and what are the cards?

        CRC stands for Class, Responsibilities, and Collaborators, and each of these are recorded on index cards which are then used to facilitate team-based roleplay.

        A CRC card is an index card that defines a Class, Responsibilities of classes and the interaction between the classes. They are used to determine which classes are needed and how they will interact. CRC cards are an informal approach to object oriented modeling. The cards are created through scenarios, based on the system requirements, that model the behavior of the system.

The contents of an index card are:

       

  • The class name
  • Its Super and Sub classes (if applicable)
  • The responsibilities of the class.
  • The names of other classes with which the class will collaborate to fulfill its responsibilities.
  • Author
  • Why bother about CRC cards?

  • They are portable. No computers are required so they can be used anywhere. Even away from the office.
  • Reduces the complexity of the design.
  • The allow the participants to experience first hand how the system will work. No computer tool can replace the interaction that happens by physically picking up the cards and playing     the roll of that object.
  • Helps the designer focus on the essentials of the class rather than getting into inner details.
  • The are a useful tool for teaching people the object-oriented paradigm.
  • They can be used as a methodology them selves or as a front end to a more formal methodology.
  • Where to learn about this new and innovative method?

        There are many websites and books that talk about this technique. Some in depth and some just enough to make life simpler for everyone. Listed below are some of the many websites that talk about this method along with the effectiveness with which each site explains this method.

    Sites


    http://www.csc.calpoly.edu/~dbutler/tutorials/winter96/crc_b/

        This site gives a very good description about CRC cards. It starts with a very simple definition of CRC cards which does not right away deal with too many technicalities. It gives a succinct description of almost all the required details, starting from a brief history to the reason behind its existence. It also gives a brief description of the advantages of having CRC cards. The Tutorial section in this link gives a step by step approach on how to go about making CRC cards and also how to use them.

    Inference:

  • A very introductory description to CRC cards.
  • The right kind of site for beginners.
  • Its disadvantage is same as its advantage, i.e it is just a basic layman way of explaining CRC cards.
  • https://olt.qut.edu.au/it/itb611/gen/index.cfm?fa=frameLink&rNum=864389     In this site the author describes the CRC concept by comparing it to the processes, data flow and data store of the procedural designs regardless of the programming language and environment. This concept is explained by taking an example from the Smalltalk-80 image. http://www.cs.umu.se/~jubo/Meetings/OOPSLA01/Contributions/RBiddle.html
        One portion of the CRC card method that hasnt been covered in most of the other sites has been covered here- Roleplay. It says 'As a design technique, roleplay really creates a focus on how the design makes objects collaborate to work through a use case.' Here they also discuss about the usual problems faced while introducing people to this concept and also gives a way around this problem. http://www.cs.umu.se/~jubo/Meetings/OOPSLA01/Contributions/MNordstrom.pdf
        This paper talks about the Object Oriented concepts using CRC cards and BlueJ. It gives a detailed case study on the benifits of using CRC cards as a tools for teaching Object oriented languages. The result of the case study proves the advantages of this technique. Which exercises can be used to teach them best: (i) interactively over the Web
    http://www.math-cs.gordon.edu/local/courses/cs211/ATMExample/CRCCards.html#Deposit
        This is a god place for anyone to practise the use and/or implementation of CRC cards. It gives a detailed explanation with a number of state diagrams which makes the experience much more effective. (ii) to a class of students, via in-class exercises
    http://www.agilemodeling.com/artifacts/crcModel.htm It gives a detailed step by step process on how to use CRC cards in Object Oriented programming. There are many more such sites that gives a pretty good explanation about this method. Some of them have been listed below. http://c2.com/doc/crc/draw.html
    http://www.cs.gordon.edu/courses/cs320/ATM_Example/CRCcards.html (iii) self-study
    Most of the above sites can be used as a means of learning about CRC cards all by oneself. http://www.math-cs.gordon.edu/local/courses/cs211/ATMExample/CRCCards.html#Deposit
    http://www.cs.gordon.edu/courses/cs320/ATM_Example/CRCcards.html
    http://www.extremeprogramming.org/example/crcsim.html
    (iv) Tools     There are some tools that are extremely useful in making CRC cards. http://www.excelsoftware.com/quickcrcintro.html
    http://www.freedownloadscenter.com/Programming/Misc__Programming_Tools/QuickCRC_Windows_Download.html

    CRC concepts in Java

    http://books.google.com/books?id=SGOyQai2TboC&pg=PA215&lpg=PA215&dq=crc+in+java&source=web&ots=uV4gPOMunE&sig=TJmVqbYwB-LSibfSkpZzPGt6VHM


    http://209.85.165.104/search?q=cache:iXZrNJdMCK8J:rohan.sdsu.edu/~stewart/cs310-fall07/Ch03v2.0.ppt+Class+Responsibility+Collaboration+card+for+java&hl=en&ct=clnk&cd=1&gl=us

    CRC concepts in Ruby

    http://weblog.rubyonrails.org/2006/6/14/remember-crc-cards


    Conclusion

        The overall conclusion is that CRC cards remains an effective technique for learning and practicing OO design. There are weaknesses, but strategies to compensate it too. Using these strategies, it is found that the CRC card technique is sound. We advocate use of the strategies to take advantage of the strengths of the CRC card technique, while addressing the weaknesses.

    References

    http://en.wikipedia.org/wiki/Class-Responsibility-Collaboration_card

    http://alistair.cockburn.us/index.php/Using_CRC_cards