home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c100 / 5.ddi / OORULE.TXT < prev    next >
Encoding:
Text File  |  1990-08-31  |  11.0 KB  |  271 lines

  1. //-------------------------------- OORULE.TXT ---------------------------------
  2.                                 FEW TIPS on
  3.                             OBJECT ORIENTED DESIGN
  4.                              && PROGRAMMING in C++
  5.  
  6.  
  7. //-----------------------------------------------------------------------------
  8. Prepared for:   UNIX-C/C++ S.I.G.   Orange Coast PC User Group (OCIPUG)
  9.                                     P.O. Box 6100-211   Costa Mesa Ca 92628
  10. by:                Patrick R. Nicolas
  11.                 NETWORK INTEGRATED SERVICES, Inc.
  12. Date:             Dec 12th, 1989
  13. Original file:  OOP_RULE.TXT  /Members B.B.S./ OCIPUG
  14. //-----------------------------------------------------------------------------
  15.  
  16.  
  17. TIP1: Static classification: 
  18.       Classes should be categorized as Container, Node, Parents, Friend, 
  19.       Child, Reference,... in the early stage of the Design phase, because
  20.       such 'static' classification is independant of the states.
  21.  
  22. TIP2: Object Property definition
  23.       When an Obj. has a property you cannot define, this property may be
  24.       well a new object_class.
  25.  
  26. TIP3: Privacy of the reciever
  27.       Never let an object tell another how to handle its job (respond to
  28.       the sender's message)
  29.  
  30. TIP4: Exceptions
  31.       Exceptions and special cases have to be ignored in the early design
  32.       phase and postponed until the implementation.
  33.  
  34. TIP5: Global structures.
  35.       Avoid global structures, data or functions.
  36.  
  37. TIP6: Optimized number of attributes to describe statically an object.
  38.       The number of attributes of an object has to be restricted to the minimal 
  39.       set required to define all its possible state ( Object-Attribute-Value)
  40.  
  41. TIP7: Optimized number of methods to describe dynamically an object.
  42.       The number of methods of an object has to be restricted to the minimal 
  43.       set required to generate all its possible action (== response to all
  44.       possible messages).
  45.       Methods, defined to manipulate attributes, may be designed at a lower 
  46.       level and at a later stage in the design phase.
  47.  
  48. TIP8: Reusability:
  49.       System objects are always reusable. Application objects may not be
  50.       reusable.
  51.  
  52. TIP9: Class definition.
  53.       A class definition must be flexible enough to handle all possible
  54.       states of its instances even those defined at run-time. The logic or 
  55.       rules encapsulated in the class should provide these instances with 
  56.       such a flexibility.
  57.  
  58. TIP10:Common Attributes:
  59.       Creating attributes which are shared between objects (static member of 
  60.       a class in C++) improve the class hierarchy cohesion, reduce the 
  61.       granularity of the overall code as well as the time spent for testing 
  62.       'special case of behavior'. 
  63.  
  64. TIP11:Optimized class overhead
  65.       If you have to increase the overhead of a class, chances you need to
  66.       to create a child class.
  67.  
  68. TIP12:Scope of a class
  69.       Object Oriented Design prevents the user from dealing with all data at
  70.       once, but only the ones relevant to the object you are currently manipu-
  71.       lating. Logical paths and global dataflow will be reduced.(:: in C++)
  72.  
  73. TIP13:Dynamic Composition
  74.       Plug-in composition provides programmers with powerful late-binding 
  75.       capabilities. It's also an open invitation to the 'end-user fantasy !!'
  76.       (Rigourous testing is a must).
  77.  
  78. TIP14:Object Domain boundaries.
  79.       Run-time constructs require a good knowledge of the application domain
  80.       and its boundaries.
  81.  
  82. TIP15:Inheritance
  83.       If the purpose of inheritance is to encapsulate the different 
  84.       behaviors of the instances, only methods (public member functions in C++)
  85.       may be added.
  86.  
  87. TIP16:Dynamic Reference Flow
  88.       The 'reference flow' is determine at run time (plug-in composition).
  89.       making an E/R representation fairly inadequate.
  90.  
  91. TIP17:Prototyping
  92.       Prototyping in C++ means also stopping at a right hierarchy level of
  93.       specialization, test.Specialization may resume at a later stage if 
  94.       neccessary.
  95.  
  96. TIP18:V && V
  97.       Syntactical verification is the compiler's responsability.
  98.       Semantic verification is the developper's responsability
  99.  
  100. TIP19:Limitation of Dev. tools
  101.       Development tools provide some guarantees regarding the code behavior
  102.       for the static-bound variables, not for late-bound variables.
  103.  
  104. TIP20:Relationships between objects.
  105.       Static relationship between objects in C++ may described by class 
  106.       Derivation, Composition, Abstraction or Factorization.
  107.       Dynamic relationship between objects in C++ are better described by 
  108.       class Plug-in composition or Circular references.
  109.  
  110. TIP21:References.
  111.       Objects refer to other objects, not contain them. Classes may contain
  112.       objects.
  113.       These links are established by reference not by value.
  114.  
  115. TIP22:Messages and Answers
  116.       Messages are requests not guaranties of actions (answer).
  117.  
  118. TIP23:Functions vs. Messages
  119.       Function calls twiddle bits, message twiddle data structures( a good one
  120.       from M. Mullin)
  121.       In case of error, the receiver may return a NIL object or the reference
  122.       to itself (*this in C++).
  123.  
  124. TIP24:Correct of arguments of a function.
  125.       If the length of a function implementing a message (Objptr->func()),
  126.       is longer than the 80 col. display screen,... it's probably too long.
  127.       Large public functions are to be decomposed (calls) into several smaller
  128.       private functions, each one of them manipulating a specific data.
  129.  
  130. TIP25:Purpose of message mechanism
  131.       The message mechanism supports query, retrieval and manipulation of
  132.       data members.
  133.  
  134. TIP26:Granularity and Message decomposition
  135.       In order to improve a class instantiation (granularity and number of 
  136.       arguments passed in the constructor), the constructor may relay messages 
  137.       to several private methods which may depend on the state of the instance.
  138.       (also TIP24)
  139.  
  140. TIP27:External Events
  141.       Some messages may be delayed by external events.
  142.  
  143. TIP28:Scope of classes within an hierarchy.
  144.       Working down the hierarchy tree, you must check if the scope of the 
  145.       children classes is smaller then its parent.
  146.  
  147. TIP29:Domain extension for sender and reciever
  148.       A more 'globally known' object is responsible for sending an message to 
  149.       a less 'known' object. Not the other way round.
  150.  
  151. TIP30:Containers
  152.       Container object must supply logical routines (demons in AI) to verify
  153.       the correct manipulation of contained (or node) objects. Add, retrieve,
  154.       delete,...
  155.  
  156. TIP31:Delegation
  157.       You should always consider delegation of the responsability of one
  158.       object to more specialized objects that are referenced by that object or 
  159.       to the users of that specialized object.
  160.  
  161. TIP32:Interactive Prototyping premier question:
  162.         Q: Am I changing something bigger than what I am dealing now?
  163.         A: YES the existing hierarchy is robust enough for an extra level
  164.            of specialization
  165.         A: NO redesign from the root.
  166.  
  167. TIP33:Composite objects
  168.      When an object contained references to other objects, it can safely
  169.      delegate its responabilities to these 'sub-objects'.
  170.      But, it's still in charge of relaying and managing messages to these
  171.      'sub-object'.
  172.  
  173. TIP34:Inheritance vs. Delegation
  174.       Inheritance is a static relationship (defined at compile time).
  175.       Delegation(reference to another object) is both a static and a dynamic
  176.       relation.
  177.  
  178. TIP35:Copy-Initialization and Shallow-Deep Copy
  179.       To make sure the reciever cannot alter the original copy (refered object),
  180.       you must explicitly copy the reference object to the new memory allocation
  181.       A copy initializer converts calls by reference into calls by value.
  182.  
  183. TIP36:Retroactive design of a base class
  184.       If a base class (or the root) does something that a derived one must undo, the base
  185.       class do too much.
  186.  
  187. TIP37:Binding.
  188.       'Binding' means binding a virtual member function to an object.
  189.  
  190. TIP38:Object Definition.
  191.       Object definition is the process of stating what you know, not an 
  192.       attempt to figure out what you don't know.
  193.  
  194. TIP39:Private vs. public
  195.       Methods that return data are usually public.
  196.       Methods that modify data are usually private (safety net).
  197.  
  198. TIP40:Abstraction pitfall
  199.       It's easier to specialize a general class than to abstract a specialized
  200.       class.
  201.  
  202. TIP41:Aggregation: 
  203.       Methods operating on the same data abstraction have to be 
  204.       grouped together.
  205.  
  206. TIP42:Active entities
  207.       Oobjects which operate on the data flow have to be considered in the 
  208.       Analysis phase, the others may be built in the Design phase.
  209.  
  210. TIP43:Bijectivity
  211.       An instance of an object has exactly one value for each attribute.
  212.  
  213. TIP44:Non-fragmentation of attributes
  214.       When an object has several member variables (attributes), each attributes
  215.       must represent a characteristic of the entire object, not part of it.
  216.  
  217. TIP45:Overlaid attributes
  218.       Each attribute must represent (or model) a characteristic of the instance
  219.       not a characteristic of another attribute or member object.
  220.  
  221. TIP46 Multiple Inheritance
  222.       Multiple inheritance becomes a valuable alternative when the analysis
  223.       requires that an 'application' object to interact with 'system' objects 
  224.       like Window, Files, Mouse, ...
  225.  
  226. TIP47:Profiling C++ code: Hidden calls
  227.       Try to reduce hidden calls to constructors and destructors.
  228.  
  229. TIP48:Profiling C++ code: Memory allocation from the heap
  230.       Use the standard library memory allocation routines (malloc().,...) for 
  231.       creating built-in data type instead the shells new and delete which 
  232.       are 20% slower.
  233.  
  234. TIP49:Profiling C++ code: Virtual Tables
  235.       Double check that all overloaded functions cannot be declared virtual, 
  236.       and the virtual ones cannot be overloaded before testing.
  237.  
  238. TIP50:Profiling C++ code Dynamic constructs
  239.       Run-time constructs are very handy for C- programmers coming to C++. 
  240.       Their abuse will slow your code between 5 to 25%.
  241.  
  242.  
  243. Readings, references and acknowledgements:
  244.     
  245.     "Object Oriented Program Design with Example in C++"
  246.                 M. Mullin  Addison Wesley   1989
  247.     "Object Oriented Systems Design: Modeling the World in Data"
  248.                 S. Shlaer, S Mellor        Yourdon Press  1988
  249.     "An Object-Oriented Requirements Specification Method"
  250.                 S. Bailin      Communication of the ACM   May 1989
  251.     "Thoughts on Object Oriented Design"
  252.                 M. Vilot    C++ at WORK'89        1989
  253.     "The Object Oriented Structured Design for Software Design representation"
  254.                 A. Wassermann, P Pircher, R. Muller   IEEE computer March 1990
  255.  
  256.  
  257. //--------------Note to CompuServe readers ---------------------------------
  258.  
  259. These "Hints and Tips' are to be considered a starting point for a broad
  260. and constructive discussion. They were compiled for a 'non-profit and sharing' 
  261. purpose and should not be regarded as formal guidelines.
  262. They also were intended for an audience of C-programmers and does not fully 
  263. encompass the lastest C++ Ve2.0 updates, specially for those who do think that
  264. language specification may influences design.
  265. My ideas regarding the benefits of Object Oriented Design methodology have 
  266. slighlty matured since the original presentation.
  267.  
  268. Patrick
  269.  
  270. E.O.F.
  271.