1 Object-Oriented Programming Using C++ CLASS 2 Honors.

Slides:



Advertisements
Similar presentations
Chapter 13 – Introduction to Classes
Advertisements

Lesson 13 Introduction to Classes CS1 Lesson Introduction to Classes1.
Chapter 6: A First Look at classes. Object-Oriented Programming  Object-oriented programming is centered on creating objects rather than procedures.
1 Introduction to Classes. C++: Classes & Objects - 12 Procedural and Object-Oriented Programming Procedural programming focuses on the process/actions.
Starting Out with C++: Early Objects 5th Edition
COMP 110 Introduction to Programming Mr. Joshua Stough October 8, 2007.
 2006 Pearson Education, Inc. All rights reserved Midterm review Introduction to Classes and Objects.
Object Oriented Programming.  OOP Basic Principles  C++ Classes  September 2004  John Edgar 22.
Chapter Objectives You should be able to describe: Object-Based Programming Classes Constructors Examples Common Programming Errors.
More C++ Classes Systems Programming. Systems Programming: C++ Classes 2 Systems Programming: 2 C++ Classes  Preprocessor Wrapper  Time Class Case Study.
C++ Functions. 2 Agenda What is a function? What is a function? Types of C++ functions: Types of C++ functions: Standard functions Standard functions.
1 Object-Oriented Programming Using C++ CLASS 27.
Copyright © 2012 Pearson Education, Inc. Chapter 13: Introduction to Classes.
Nirmalya Roy School of Electrical Engineering and Computer Science Washington State University Cpt S 122 – Data Structures Classes: A Deeper Look Part.
More C++ Classes Systems Programming. C++ Classes  Preprocessor Wrapper  Time Class Case Study –Two versions (old and new)  Class Scope and Assessing.
Copyright © 2012 Pearson Education, Inc. Chapter 13: Introduction to Classes.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Procedural and Object-Oriented Programming 13.1.
1 Chapter 13 Introduction to Classes. 2 Topics 12.1 Procedural and Object-Oriented Programming 12.2 Introduction to Classes 12.3 Defining an Instance.
Copyright © 2009 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 13: Introduction to Classes.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Edition Chapter 13 Introduction to Classes.
Chapter 13. Procedural programming vs OOP  Procedural programming focuses on accomplishing tasks (“verbs” are important).  Object-oriented programming.
Starting Out with C++ 2nd Edition, by Tony Gaddis 1 Chapter 7 – Classes and Structured Data.
Copyright 2004 Scott/Jones Publishing Alternate Version of STARTING OUT WITH C++ 4 th Edition Chapter 7 Structured Data and Classes.
C++ Functions. Objectives 1. Be able to implement C++ functions 2. Be able to share data among functions 2.
Copyright © 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Starting Out with C++ Early Objects Sixth Edition Chapter 7: Introduction.
ADTs and C++ Classes Classes and Members Constructors The header file and the implementation file Classes and Parameters Operator Overloading.
Chapter 10 Introduction to Classes
 Classes in c++ Presentation Topic  A collection of objects with same properties and functions is known as class. A class is used to define the characteristics.
Starting Out with C++, 3 rd Edition 1 Chapter 13 – Introduction to Classes.
Structured Data and Classes Chapter 7. Combining Data into Structures Structure: C++ construct that allows multiple variables to be grouped together Structure.
Class Miscellanea Details About Classes. Review We’ve seen that a class has two sections: class Temperature { public: //... public members private: //...
1 C++ Classes: Access (II) Ying Wu Electrical Engineering & Computer Science Northwestern University ECE230 Lectures Series.
Chapter 3 Part I. 3.1 Introduction Programs written in C ◦ All statements were located in function main Programs written in C++ ◦ Programs will consist.
2 Objectives You should be able to describe: Object-Based Programming Classes Constructors Examples Common Programming Errors.
CS Introduction to Data Structures Spring Term 2004 Franz Hiergeist.
CSci 162 Lecture 10 Martin van Bommel. Procedures vs Objects Procedural Programming –Centered on the procedures or actions that take place in a program.
Copyright 2003 Scott/Jones Publishing Standard Version of Starting Out with C++, 4th Brief Edition Chapter 12 Introduction to Classes.
By Joaquin Vila Prepared by Sally Scott ACS 168 Problem Solving Using the Computer Week 13 More on Classes Chapter 8 Week 13 More on Classes Chapter 8.
1 CSE 2341 Object Oriented Programming with C++ Note Set #5.
Lecture 19: Introduction to Classes Professor: Dr. Miguel Alonso Jr. Fall 2008 CGS2423/COP1220.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 7: Introduction to Classes and Objects Starting Out with C++ Early.
1 Liang, Introduction to C++ Programming, (c) 2007 Pearson Education, Inc. All rights reserved X 1 Chapter 10 More on Objects and Classes.
February 28, 2005 Introduction to Classes. Object Oriented Programming An object is a software bundle of related variables and methods. Software objects.
Topic 8Classes, Objects and Methods 1 Topic 8 l Class and Method Definitions l Information Hiding and Encapsulation l Objects and Reference Classes, Objects,
Prof. amr Goneid, AUC1 CSCE 110 PROGRAMMING FUNDAMENTALS WITH C++ Prof. Amr Goneid AUC Part 15. Dictionaries (1): A Key Table Class.
Separating Class Specification tMyn1 Separating Class Specification from Implementation Usually class declarations are stored in their own header files.
CS1201: Programming Language 2 Classes and objects.
Array in C++ / review. An array contains multiple objects of identical types stored sequentially in memory. The individual objects in an array, referred.
1 Introduction to Object Oriented Programming Chapter 10.
1 CSE 2341 Object Oriented Programming with C++ Note Set #7.
Copyright © 2015, 2012, 2009 Pearson Education, Inc., Publishing as Addison-Wesley All rights reserved. Chapter 13: Introduction to Classes.
Starting Out with C++, 3 rd Edition 1 Chapter 13 – Introduction to Classes Procedural and Object-Oriented Programming Procedural programming is a method.
1 Class 19 Chapter 13 – Creating a class definition.
C++ Features Function Overloading Default Functions arguments Thinking about objects – relationship to classes Types of member functions Constructor and.
1 CSE 2341 Object Oriented Programming with C++ Note Set #12.
1 C++ Classes and Data Structures Course link…..
Data Structures Lecture 4: Classes in C++ Azhar Maqsood NUST Institute of Information Technology (NIIT)
Pointer to an Object Can define a pointer to an object:
Procedural and Object-Oriented Programming
Chapter 7: Introduction to Classes and Objects
Abstract Data Types Programmer-created data types that specify
Classes.
Introduction to Classes
Chapter 7: Introduction to Classes and Objects
CS1201: Programming Language 2
Introduction to Classes
Lecture 8 Object Oriented Programming (OOP)
Chapter 6: A First Look at classes
Presentation transcript:

1 Object-Oriented Programming Using C++ CLASS 2 Honors

2 Objectives Create a class definition Use a constructor and destructor Differentiate between class interface and implementation Write a main driver to test set and get methods of a class

3 Introduction to the Class In C++, the class is the construct primarily used to create objects. class class-name { declaration statements here };

4 Example: class Rectangle { private: float Width, Length, Area; public: void SetData(float, float); void CalcArea(void); float GetWidth(void); float GetLength(void); float GetArea(void); };

5 Access Specifiers The key words private and public are access specifiers. private means they can only be accessed by the member functions. public means they can be called from statements outside the class. –Note: the default access of a class is private, but it is still a good idea to use the private key word to explicitly declare private members. This clearly documents the access specification of the class.

6 Defining Member Functions Class member functions are defined similarly to regular functions. void Rectangle::SetData(float W, float L) { Width = W; Length = L; }

7 Defining an Instance of a Class Class objects must be defined after the class is declared. Defining a class object is called the instantiation of a class. Rectangle Box; //Box is an instance of Rectangle

8 Accessing an Object’s Members Box.CalcArea();

9 Why Have Private Members? In object-oriented programming, an object should protect its important data by making it private and providing a public interface to access that data.

10 Focus on Software Engineering: Some Design Considerations Usually class declarations are stored in their own header files. Member function definitions are stored in their own.CPP files. The #ifndef directive allows a program to be conditionally compiled. This prevents a header file from accidentally being included more than once.

11 Contents of Rectangle.h #ifndef RECTANGLE_H #define RECTANGLE_H // Rectangle class declaration. class Rectangle { private: float width; float length;

12 public: bool setWidth(float); bool setLength(float); float getWidth(void); float getLength(void); float getArea(void); }; #endif

13 Contents of Rectangle.CPP #include "rectang.h" // SetWidth copies the argument w to private member // width if the argument is valid; if argument is negative // private member width is set to 0.0 and a false returned bool Rectangle::setWidth(float w) { bool status; if (w < 0) { width = 0.0; status = false; } else { width = w; status = true; } return status; }

14 Contents of Rectangle.CPP #include "rectang.h" // SetWidth copies the argument len to private member // length if the argument is valid; if argument is negative // private member length is set to 0.0 and a false // returned bool Rectangle::setLength(float len) { bool status; if (l < 0) { length = 0.0; status = false; } else { length = len; status = true; } return status; }

15 Program continues // GetWidth returns the value in the private member // Width. float Rectangle::getWidth(void) { return width; } // GetLength returns the value in the private member // Length. float Rectangle::getLength(void) { return length; } // GetArea returns the value in the private member //Area. float Rectangle::getArea(void) { return width * length; }

16 // This program demonstrates a simple class. #include #include “rectang.h" // contains Rectangle // class declaration using namespace std; // Don't forget to link this program with Rectangle.cpp! int main() { Rectangle Box; float rectWidth, rectLength; cout << "This program will calculate the area of a\n"; cout << "rectangle. What is the width? "; cin >> rectWidth; cout << "What is the length? "; cin >> rectLength;

17 Program continues if (!Box.setWidth(rectWidth)) cout << “invalid value for width”; else if ( if (!Box.setLength(rectLength)) cout << “invalid value for length; else { cout << "Here rectangle's data:\n"; cout << "Width: " << Box.getWidth() << endl; cout << "Length: " << Box.getLength() << endl; cout << "Area: " << Box.getArea() << endl; } return 0; }

18 Performing I/O in a Class Object Notice that the Rectangle example has no cin or cout. This is so anyone who writes a program that uses the Rectangle class will not be “locked into” the way the class performs input or output. Unless a class is specifically designed to perform I/O, operations like user input and output are best left to the person designing the application.

19 Rectangle.hContains the declaration of the Rectangle class. Rectangle.cppContains the Rectangle class’s member function definitions. Pr13-3.cppContains functiton main

20 Focus on Software Engineering: Using Private Member Functions A private member function may only be called from a function that is a member of the same object.

21 Inline Member Functions When the body of a member function is defined inside a class declaration, it is declared inline.

22 // Rectangle class declaration with some functions written inline class Rectangle { private: float width; float length; public: bool setWidth(float); // not inlined; would be defined in.cpp file bool setLength(float); float getWidth() { return width(); } // inlined // would not be in.cpp float getLength() { return length(); } float getArea() { return width * length; }

23 Constructors A constructor is a member function that is automatically called when a class object is created. Constructors have the same name as the class. Constructors must be declared publicly. Constructors have no return type.

24 // This program demonstrates a constructor. #include using namespace std; class Demo { public: Demo(void);// Constructor }; Demo::Demo(void) { cout << "Welcome to the constructor!\n"; }

25 Program continues int main() { Demo DemoObj;// Declare a Demo object; cout << "This program demonstrates an object\n"; cout << "with a constructor.\n"; return 0; }

26 Program Output Welcome to the constructor. This program demonstrates an object with a constructor.

27 Constructor Arguments When a constructor does not have to accept arguments, it is called an object’s default constructor. Like regular functions, constructors may accept arguments, have default arguments, be declared inline, and be overloaded.

28 Destructors A destructor is a member function that is automatically called when an object is destroyed. –Destructors have the same name as the class, preceded by a tilde character (~) –In the same way that a constructor is called then the object is created, the destructor is automatically called when the object is destroyed. –In the same way that a constructor sets things up when an object is created, a destructor performs shutdown procedures when an object is destroyed.

29 // This program demonstrates a constructor. #include using namespace std; class Demo { public: Demo(void); // Constructor ~Demo(void); // Destructor }; Demo::Demo(void) { cout << "Welcome to the constructor!\n"; }

30 Program continues Demo::~Demo(void) { cout << "The destructor is now running.\n"; } int main() { Demo DemoObj; // Declare a Demo object; cout << "This program demonstrates an object\n"; cout << "with a constructor and destructor.\n"; return 0; }

31 Program Output Welcome to the constructor! This program demonstrates an object with a constructor and destructor. The destructor is now running.

32 Constructors that Accept Arguments Information can be passed as arguments to an object’s constructor.

33 Contents of SALE.H #ifndef SALE_H #define SALE_H // Sale class declaration class Sale { private: float TaxRate; float Total; public: Sale(float Rate) { TaxRate = Rate; } void CalcSale(float Cost) { Total = Cost + (Cost * TaxRate) }; float GetTotal(void) { return Total; } }; #endif

34 Contents of main program, PR13-10.CPP #include using namespace std; #include "sale.h" int main() { Sale Cashier(0.06);// 6% sales tax rate float Amnt; cout.precision(2); cout.setf(ios::fixed | ios::showpoint); cout << "Enter the amount of the sale: "; cin >> Amnt; Cashier.CalcSale(Amnt); cout << "The total of the sale is $"; cout << Cashier.GetTotal << endl; return 0; }

35 Program Output Enter the amount of the sale: The total of the sale is $132.50

36 Contents of SALE2.H #ifndef SALE2_H #define SALE2_H // Sale class declaration class Sale { private: float TaxRate; float Total; public: Sale(float Rate = 0.05) { TaxRate = Rate; } void CalcSale(float Cost) { Total = Cost + (Cost * TaxRate) }; float GetTotal(void) { return total; } }; #endif

37 #include #include "sale2.h“ using namespace std; int main() { Sale Cashier1;// Use default sales tax rate Sale Cashier2(0.06); // Use 6% sales tax rate float Amnt; cout.precision(2); cout.set(ios::fixed | ios::showpoint); cout << "Enter the amount of the sale: "; cin >> Amnt; Cashier1.CalcSale(Amnt); Cashier2.CalcSale(Amnt);

38 Program continues cout << "With a 0.05 sales tax rate, the total\n"; cout << "of the sale is $"; cout << Cashier1.GetTotal() << endl; cout << "With a 0.06 sales tax rate, the total\n"; cout << "of the sale is $"; cout << Cashier2.GetTotal() << endl; return 0; }

39 Program Output Enter the amount of the sale: With a 0.05 sales tax rate, the total of the sale is $ With a 0.06 sales tax rate, the total of the sale is $132.50