Presentation is loading. Please wait.

Presentation is loading. Please wait.

Design (2).

Similar presentations


Presentation on theme: "Design (2)."— Presentation transcript:

1 Design (2)

2 6.3 Object-Oriented Design
Classes and Objects are the basic building blocks of an OO design, just like functions (and procedures) are for a function-oriented design. Objects are entities that encapsulate some state (data) and provide services to be used by a client, which could be another object, program, or a user.

3 6.3 Object-Oriented Design
A classes defines a possible set of objects. A class represents a set of objects that share a common structure and a common behavior, whereas an object is an instance of a class.

4 6.3 Object-Oriented Design
Relationships among Objects : An object, as a stand-alone entity, has very limited capabilities—it can only provide the services defined on it. In object-oriented systems, an object interacts with another by sending a message to the object to perform some service it provides .

5 6.3 Object-Oriented Design
Relationships among Objects If an object uses some services of another object, there is an association between the two objects. This association is also called a link . Links between objects capture the client/server type of relationship .

6 6.3 Object-Oriented Design
Inheritance: Inheritance is a relation between classes that allows for definition and implementation of one class based on the definition of existing classes . When a class B inherits from another class A, B is referred to as the subclass or the derived class and A is referred to as the superclass or the base class. a subclass B will have two parts: a derived part and an incremental part. Inheritance is often called an “is a” relation, implying that an object of type B is also an instance of type A. The inheritance relation between classes forms a hierarchy. when a subclass inherits from many super classes, is called multiple inheritance .

7 6.3 Object-Oriented Design
Inheritance types : Inheritance can be broadly classified of 2 types : Strict inheritance: a subclass takes all the features from parent class and adds additional features to specialize it. Nonstick inheritance: a subclass does not have all the features of the parent class or some features have been redefined. Inheritance and Polymorphism polymorphism : refers to objects of different types at different times. In OO system with inheritance, polymorphism cannot be avoided it must be supported

8 6.3.1Unified Modeling Language (UML)
UML is a graphical notation for expressing object- oriented designs . while modeling, during the design process, the designer also tries to understand how the different classes are related and how they interact to provide the desired functionality. UML can create different models, it has become an aid for understanding the system, designing the system, as well as a notation for representing design.

9 UML diagram types Activity diagrams, which show the activities involved in a process or in data processing . Use case diagrams, which show the interactions between a system and its environment. Sequence diagrams, which show interactions between actors and the system and between system components. Class diagrams, which show the object classes in the system and the associations between these classes. State diagrams, which show how the system reacts to internal and external events. Chapter 5 System modeling

10 Class diagrams Class diagrams are used when developing an object- oriented system model to show the classes in a system and the associations between these classes.

11 Class diagrams A class diagram defines :
Classes that exist in the system—besides the class name, the diagrams are capable of describing the key fields as well as the important methods of the classes. Associations between classes—what types of associations exist between different classes. Subtype, super type relationship—classes may also form subtypes giving type hierarchies using polymorphism. The class diagrams can represent these hierarchies also.

12 UML classes and association
Chapter 5 System modeling

13 Classes and associations in the MHC-PMS
Chapter 5 System modeling

14 The Consultation class
Chapter 5 System modeling

15

16 6-4: Detailed Design here we concentrate on internal design of module
Developing detailed design is useful for the more complex and important modules The basic goal in detailed design is to specify the logic for the different modules Specifying the logic will require developing an algorithm that implement the given specification Logic/algorithm design steps : statement of the problem : comes from the system design developing a mathematical model. design of the algorithm : using stepwise refinement technique Stepwise refinement technique breaks the logic design problem into a series of steps , so that the development can be done gradually . for classes , states diagrams can be used to model the relationships between methods


Download ppt "Design (2)."

Similar presentations


Ads by Google