130 likes | 455 Views
Asper School of Business University of Manitoba. Systems Analysis & Design. Instructor: Bob Travica. Systems development life cycle & development methodologies. Updated: September 2013. Outline. Systems development life cycle System development methodology Structured methodology
E N D
Asper School of Business University of Manitoba Systems Analysis & Design Instructor: Bob Travica Systems development life cycle & development methodologies Updated: September 2013
Outline • Systems development life cycle • System development methodology • Structured methodology • Object-oriented methodology • Objects and Classes • Inheritance • Specialization/Generalization • Polymorphism 3510 Systems Analysis & Design * Bob Travica
Plan Use & Maintain Develop Systems development life cycle (SDLC) • SDLC: process of planning, building, using, and updating an information system. 3510 Systems Analysis & Design * Bob Travica
System development methodology • SD Methodology • Guidelines for developing system. • Kind of knowledge. • Two kinds of methodologies • Structured (since 1970s) • Newer ones focused on rapid development 3510 Systems Analysis & Design * Bob Travica
Structured methodology(“Waterfall”) MAINTAIN DURING PRODUCTION PHASE INSTALLATION, TESTING Also called “Waterfall” methodology 3510 Systems Analysis & Design * Bob Travica
DEVELOPMENT ACTIVITY Planning Analysis Installation, Testing Object oriented orUnified Process methodology R Iteration = One run of Analysis, Design, Implementation, Deployment within a UP phase. A phase has 1 or more iterations. 3510 Systems Analysis & Design * Bob Travica
Structured vs. OO Methodology 3510 Systems Analysis & Design * Bob Travica
Object – key concept • Object: Software entity with data (attributes) and methods (associated behaviors, or functions). • Object encapsulates data and processes. Object’s data are private, inaccessible directly to other objects. • Examples of objects • Problem domain objects (student, customer) • User interface (buttons, text boxes) 3510 Systems Analysis & Design * Bob Travica
Object examples • Objects are associated and interact via messages – • callsapplying some function on data (e.g., read). 3510 Systems Analysis & Design * Bob Travica
Object – An instance of class with specified Values of Attributes (specific data) Class Name 12005 09/10/2003 Attributes 16/10/2003 Functions Class • Class: Definition of object properties. Like a skeleton od database record plus applicable data functions (write, read, change…). • Objects are instances of a class (e.g., Customer object is an instance of a Customer class). 3510 Systems Analysis & Design * Bob Travica
Inheritance and Specialization/Generalization • Inheritance: Property of OO systems allowing for attributes and methods to be shared among objects. • Inheritance enables a special association between classes called Specialization/Generalization 3510 Systems Analysis & Design * Bob Travica
Inheritance & Specialization/ Generalization (Cont.) • Generalization represented by arrows from subclasses to superclass. • Class “generalizes” attributes & methods of subclasses. • Specialization: Subclasses inherit attributes and operations of the superclass, plus have some of their own. • Subclasses “specialize” the superclass. 3510 Systems Analysis & Design * Bob Travica
Each type of vehicle has its own version of calcPrice() Message: ”Calculate price” Inheritance and Polymorphism • Polymorphism: Ability for dissimilar objects to respond to the same message in different ways. 3510 Systems Analysis & Design * Bob Travica