1 / 23

Chapter-01

Chapter-01. Introduction to Software Engineering. Software Engineering. Object-Oriented Design. Problem Solving. Does anyone carpet? Let’s solve this area problem: Write a program that, given a length and width, computes the area of a carpet. Behavior.

sian
Download Presentation

Chapter-01

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Chapter-01 Introduction to Software Engineering

  2. Software Engineering Object-Oriented Design

  3. Problem Solving • Does anyone carpet? • Let’s solve this area problem: • Write a program that, given a length and width, computes the area of a carpet.

  4. Behavior A. Describe the desired behavior of the program: Our program should display a prompt for length and width of the carpet, read length and width of the carpet from the keyboard, compute the corresponding area, and display the area, along with a descriptive label on the screen.

  5. Objects and Attributes B. Identify the nouns in the behavioral description (other than program and user): Our program should display a prompt for length and width of the carpet on the screen, read length and width of the carpet from the keyboard, compute the corresponding area, and display the area, along with a descriptive label on the screen. These make up the objects and data members in our program.

  6. Operations C. Identify the verbs in the behavioral description: Our program should display a prompt for the length and width of the carpet on the screen, read the length and width from the keyboard, compute the corresponding area, and display the area, along with a descriptive label on the screen. These make up the operations in our program.

  7. Algorithm D. Organize the objects and operations into a sequence of steps that solves the problem, called an algorithm. 1. Define the class carpet and its operations. 2. Create the object carpet_1. 2.1. Display a prompt for length and width on the screen. 2.2. Read length and width from the keyboard. 3. Send message to Compute area from length and width . 4. Display area , plus an informative label on the screen.

  8. Coding Once we have designed an algorithm, the next step is to translate that algorithm into a high level language like C++. This involves figuring out how to • represent our objects and its operations, • send messages to objects for processed data, in C++ (with the aid of a book...)

  9. Representing Objects A. Determine a type and name for each object:

  10. Performing Operations B. Identify the C++ operator to perform a given operation, if there is one... To compute area, object needs to find the area-length-width formula in a geometry book...

  11. Length and Width-to-Area In a geometry book, we find that • area is the product of length and width

  12. Operations (Revised)

  13. Documentation Always begin a file with an openingcomment: /* area.cpp is a area calculating utility. * Author: Bazlur Rasheed * Date: 02 July 2000 * Purpose: Calculate area of a rectangle. */

  14. Coding: Defining class carpet /* area.cpp is a area calculating utility. * ... */ class carpet{ public: carpet(); int cal_area(); private: int length, width; };

  15. Coding: Defining class carpet //... carpet::carpet() { cout <<"\n Enter the length (meter) and” << “ width (meter)” << "\n seperated by a space and “ << “ followed by the enter key: ”; cin >> length >> width; } int carpet::cal_area() { return (length*width); }

  16. Coding: Program Stub /* area.cpp is a area calculating utility. * ... */ #include <iostream> // cin, cout, <<, >> using namespace std; void main(void) { }

  17. Coding: Algorithm Steps 1 // ... void main(void) { cout << “\n Rectangular Area Calculator!!”; }

  18. Coding: Algorithm Steps 2 // ... void main(void) { cout << “\n Rectangular Area Calculator!”; carpet carpet_1; }

  19. Coding: Algorithm Step 3 // ... void main(void) { cout << “\n Rectangular Area Calculator!”; carpet carpet_1; int area = carpet_1.cal_area(); }

  20. Coding: Algorithm Step 4 // ... void main(void) { cout << “\n Rectangular Area Calculator!”; carpet carpet_1; int area = carpet_1.cal_area(); cout << "\n The area is " << area << ” square meter. \n\n"; }

  21. Testing Run your program using sample data (whose correctness is easy to check): Rectangular Area Calculator! Enter the length (meter) and width (meter) separated by a space and followed by the enter key: 10 20 The area is 200 square meter

  22. Summary of OOD OOD is a methodology for designing programs: 1. Describe the desired behavior of the program. 2. Identify the objects and it’s operations required. 4. Organize objects and messages into an algorithm, refining object and its operation lists as necessary.

  23. Summary of OOP Programming Writing a program consists of these steps: 1. Design relevent objects and algorithm for your program. 2. Code your design. 3. Test your program. 4. Maintain/upgrade your program as necessary.

More Related