Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 6: Classes and Data Abstraction

Similar presentations


Presentation on theme: "Chapter 6: Classes and Data Abstraction"— Presentation transcript:

1 Chapter 6: Classes and Data Abstraction
Outline Introduction Structure Definitions Accessing Structure Members Implementing a User-Defined Type Time with a struct Implementing a Time Abstract Data Type with a class Class Scope and Accessing Class Members Separating Interface from Implementation Controlling Access to Members Access Functions and Utility Functions Initializing Class Objects: Constructors Using Default Arguments with Constructors Destructors When Constructors and Destructors Are Called Using Set and Get Functions Subtle Trap: Returning a Reference to a private Data Member Default Memberwise Assignment Software Reusability

2 Object-oriented programming (OOP)
6.1 Introduction Object-oriented programming (OOP) Encapsulates data (attributes) and functions (behavior) into packages called classes Information hiding Implementation details are hidden within the classes themselves Classes Classes are the standard unit of programming A class is like a blueprint – reusable Objects are instantiated (created) from the class For example, a house is an instance of a “blueprint class”

3 6.2 Structure Definitions
Structures Aggregate data types built using elements of other types struct Time { int hour; int minute; int second; }; Structure member naming In same struct: must have unique names In different structs: can share name struct definition must end with semicolon Structure tag Structure members

4 6.2 Structure Definitions
Self-referential structure Structure member cannot be instance of enclosing struct Structure member can be pointer to instance of enclosing struct (self-referential structure) Used for linked lists, queues, stacks and trees struct definition Creates new data type used to declare variables Structure variables declared like variables of other types Examples: Time timeObject; Time timeArray[ 10 ]; Time *timePtr; Time &timeRef = timeObject;

5 6.3 Accessing Structure Members
Member access operators Dot operator (.) for structure and class members Arrow operator (->) for structure and class members via pointer to object Print member hour of timeObject: cout << timeObject.hour; OR timePtr = &timeObject; cout << timePtr->hour; timePtr->hour same as ( *timePtr ).hour Parentheses required * lower precedence than .

6 6.4 Implementing a User-Defined Type Time with a struct
Default: structures passed by value Pass structure by reference Avoid overhead of copying structure C-style structures No “interface” If implementation changes, all programs using that struct must change accordingly Cannot print as unit Must print/format member by member Cannot compare in entirety Must compare member by member

7 Define structure type Time with three integer members.
// Fig. 6.1: fig06_01.cpp // Create a structure, set its members, and print it. #include <iostream> 4 using std::cout; using std::endl; 7 #include <iomanip> 9 10 using std::setfill; 11 using std::setw; 12 13 // structure definition 14 struct Time { int hour; // 0-23 (24-hour clock format) int minute; // 0-59 int second; // 0-59 18 19 }; // end struct Time 20 21 void printUniversal( const Time & ); // prototype 22 void printStandard( const Time & ); // prototype 23 fig06_01.cpp (1 of 3) Define structure type Time with three integer members. Pass references to constant Time objects to eliminate copying overhead.

8 Use dot operator to initialize structure members.
24 int main() 25 { Time dinnerTime; // variable of new type Time 27 dinnerTime.hour = 18; // set hour member of dinnerTime dinnerTime.minute = 30; // set minute member of dinnerTime dinnerTime.second = 0; // set second member of dinnerTime 31 cout << "Dinner will be held at "; printUniversal( dinnerTime ); cout << " universal time,\nwhich is "; printStandard( dinnerTime ); cout << " standard time.\n"; 37 dinnerTime.hour = 29; // set hour to invalid value dinnerTime.minute = 73; // set minute to invalid value cout << "\nTime with invalid values: "; printUniversal( dinnerTime ); cout << endl; 44 return 0; 46 47 } // end main 48 Use dot operator to initialize structure members. fig06_01.cpp (2 of 3) Dinner will be held at 18:30 military time, which is 6:30:00 PM standard time. Time with invalid values: 29:73

9 fig06_01.cpp (3 of 3) fig06_01.cpp output (1 of 1)
49 // print time in universal-time format 50 void printUniversal( const Time &t ) 51 { cout << setfill( '0' ) << setw( 2 ) << t.hour << ":" << setw( 2 ) << t.minute << ":" << setw( 2 ) << t.second; 55 56 } // end function printUniversal 57 58 // print time in standard-time format 59 void printStandard( const Time &t ) 60 { cout << ( ( t.hour == 0 || t.hour == 12 ) ? : t.hour % 12 ) << ":" << setfill( '0' ) << setw( 2 ) << t.minute << ":" << setw( 2 ) << t.second << ( t.hour < 12 ? " AM" : " PM" ); 66 67 } // end function printStandard fig06_01.cpp (3 of 3) fig06_01.cpp output (1 of 1) Use parameterized stream manipulator setfill. Use dot operator to access data members. Dinner will be held at 18:30:00 universal time, which is 6:30:00 PM standard time. Time with invalid values: 29:73:00

10 6.5 Implementing a Time Abstract Data Type with a class
Classes Model objects Attributes (data members) Behaviors (member functions) Defined using keyword class Member functions Methods Invoked in response to messages Member access specifiers public: Accessible wherever object of class in scope private: Accessible only to member functions of class protected:

11 6.5 Implementing a Time Abstract Data Type with a class
Constructor function Special member function Initializes data members Same name as class Called when object instantiated Several constructors Function overloading Cannot return values (no return type)

12 Class Time definition (1 of 1)
2 public: Time(); // constructor void setTime( int, int, int ); // set hour, minute, second void printUniversal(); // print universal-time format void printStandard(); // print standard-time format 8 private: int hour; // (24-hour clock format) int minute; // int second; // 13 14 }; // end class Time Definition of class begins with keyword class. Class body starts with left brace. Function prototypes for public member functions. Member access specifiers. Class Time definition (1 of 1) Constructor has same name as class, Time, and no return type. private data members accessible only to member functions. Class body ends with right brace. Definition terminates with semicolon.

13 6.5 Implementing a Time Abstract Data Type with a class
Objects of class After class definition Class name new type specifier C++ extensible language Object, array, pointer and reference declarations Example: Class name becomes new type specifier. Time sunset; // object of type Time Time arrayOfTimes[ 5 ]; // array of Time objects Time *pointerToTime; // pointer to a Time object Time &dinnerTime = sunset; // reference to a Time object

14 6.5 Implementing a Time Abstract Data Type with a class
Member functions defined outside class Binary scope resolution operator (::) “Ties” member name to class name Uniquely identify functions of particular class Different classes can have member functions with same name Format for defining member functions ReturnType ClassName::MemberFunctionName( ){ } Does not change whether function public or private Member functions defined inside class Do not need scope resolution operator, class name Compiler attempts inline Outside class, inline explicitly with keyword inline

15 fig06_03.cpp (1 of 5) Define class Time. 1 // Fig. 6.3: fig06_03.cpp
// Time class. #include <iostream> 4 using std::cout; using std::endl; 7 #include <iomanip> 9 10 using std::setfill; 11 using std::setw; 12 13 // Time abstract data type (ADT) definition 14 class Time { 15 16 public: Time(); // constructor void setTime( int, int, int ); // set hour, minute, second void printUniversal(); // print universal-time format void printStandard(); // print standard-time format 21 fig06_03.cpp (1 of 5) Define class Time.

16 Note the :: preceding the function names.
22 private: int hour; // (24-hour clock format) int minute; // int second; // 26 27 }; // end class Time 28 29 // Time constructor initializes each data member to zero and 30 // ensures all Time objects start in a consistent state 31 Time::Time() 32 { hour = minute = second = 0; 34 35 } // end Time constructor 36 37 // set new Time value using universal time, perform validity 38 // checks on the data values and set invalid values to zero 39 void Time::setTime( int h, int m, int s ) 40 { hour = ( h >= 0 && h < 24 ) ? h : 0; minute = ( m >= 0 && m < 60 ) ? m : 0; second = ( s >= 0 && s < 60 ) ? s : 0; 44 45 } // end function setTime 46 fig06_03.cpp (2 of 5) Note the :: preceding the function names. Constructor initializes private data members to 0. public member function checks parameter values for validity before setting private data members.

17 Declare variable t to be object of class Time.
47 // print Time in universal format 48 void Time::printUniversal() 49 { cout << setfill( '0' ) << setw( 2 ) << hour << ":" << setw( 2 ) << minute << ":" << setw( 2 ) << second; 53 54 } // end function printUniversal 55 56 // print Time in standard format 57 void Time::printStandard() 58 { cout << ( ( hour == 0 || hour == 12 ) ? 12 : hour % 12 ) << ":" << setfill( '0' ) << setw( 2 ) << minute << ":" << setw( 2 ) << second << ( hour < 12 ? " AM" : " PM" ); 63 64 } // end function printStandard 65 66 int main() 67 { Time t; // instantiate object t of class Time 69 No arguments (implicitly “know” purpose is to print data members); member function calls more concise. fig06_03.cpp (3 of 5) Declare variable t to be object of class Time. The initial universal/military time is 00:00 The initial standard time is 12:00:00 AM

18 Notice how functions are called using the dot (.) operator.
// output Time object t's initial values cout << "The initial universal time is "; t.printUniversal(); // 00:00:00 73 cout << "\nThe initial standard time is "; t.printStandard(); // 12:00:00 AM 76 t.setTime( 13, 27, 6 ); // change time 78 // output Time object t's new values cout << "\n\nUniversal time after setTime is "; t.printUniversal(); // 13:27:06 82 cout << "\nStandard time after setTime is "; t.printStandard(); // 1:27:06 PM t.setTime( 99, 99, 99 ); // attempt invalid settings 87 // output t's values after specifying invalid values cout << "\n\nAfter attempting invalid settings:" << "\nUniversal time: "; t.printUniversal(); // 00:00:00 92 Notice how functions are called using the dot (.) operator. Invoke public member functions to print time. fig06_03.cpp (4 of 5) Set data members using public member function. Universal time after setTime is 13:27 Standard time after setTime is 1:27:06 PM Attempt to set data members to invalid values using public member function. After attempting invalid settings: Military time: 00:00 Standard time: 12:00:00 AM

19 fig06_03.cpp (5 of 5) fig06_03.cpp output (1 of 1)
cout << "\nStandard time: "; t.printStandard(); // 12:00:00 AM cout << endl; 96 return 0; 98 99 } // end main fig06_03.cpp (5 of 5) fig06_03.cpp output (1 of 1) The initial universal time is 00:00:00 The initial standard time is 12:00:00 AM Universal time after setTime is 13:27:06 Standard time after setTime is 1:27:06 PM After attempting invalid settings: Universal time: 00:00:00 Standard time: 12:00:00 AM Data members set to 0 after attempting invalid settings.

20 6.5 Implementing a Time Abstract Data Type with a class
Destructors Same name as class Preceded with tilde (~) No arguments Cannot be overloaded Performs “termination housekeeping”

21 6.6 Class Scope and Accessing Class Members
Data members and member functions Within member function, data members can be referenced by name, with no qualification Outside a scope Members are referenced through handles An object name, a reference to an object or a pointer to an object

22 6.6 Class Scope and Accessing Class Members
Function scope Variables declared in member function Only known to function Variables with same name as class-scope variables Class-scope variable “hidden” Access with scope resolution operator (::) ClassName::classVariableName Better to avoid using same names! Variables only known to function they are defined in Variables are destroyed after function completion

23 6.6 Class Scope and Accessing Class Members
Operators to access class members Identical to those for structs Dot member selection operator (.) Object Reference to object Arrow member selection operator (->) Pointers Example: t.hour is the hour element of t TimePtr->hour is the hour element

24 // Fig. 6.4: fig06_04.cpp // Demonstrating the class member access operators . and -> // // CAUTION: IN FUTURE EXAMPLES WE AVOID PUBLIC DATA! #include <iostream> 6 using std::cout; using std::endl; 9 10 // class Count definition 11 class Count { 12 13 public: int x; 15 void print() { cout << x << endl; } 20 21 }; // end class Count 22 fig06_04.cpp (1 of 2) It is rare to have public member variables. Usually only member functions are public; this keeps as much information hidden as possible.

25 fig06_04.cpp (2 of 2) fig06_04.cpp output (1 of 1)
23 int main() 24 { Count counter; // create counter object Count *counterPtr = &counter; // create pointer to counter Count &counterRef = counter; // create reference to counter 28 cout << "Assign 1 to x and print using the object's name: "; counter.x = 1; // assign 1 to data member x counter.print(); // call member function print 32 cout << "Assign 2 to x and print using a reference: "; counterRef.x = 2; // assign 2 to data member x counterRef.print(); // call member function print 36 cout << "Assign 3 to x and print using a pointer: "; counterPtr->x = 3; // assign 3 to data member x counterPtr->print(); // call member function print 40 return 0; 42 43 } // end main fig06_04.cpp (2 of 2) fig06_04.cpp output (1 of 1) Use dot member selection operator for counter object. Use dot member selection operator for counterRef reference to object. Use arrow member selection operator for counterPtr pointer to object. Assign 1 to x and print using the object's name: 1 Assign 2 to x and print using a reference: 2 Assign 3 to x and print using a pointer: 3

26 6.7 Separating Interface from Implementation
Makes it easier to modify programs Header files (interface) Contains class definitions and function prototypes Included in each file using class #include File extension .h Source-code files (implementation) Contains member function definitions Same base name Convention Compiled and linked

27 Preprocessor code to prevent multiple inclusions.
// Fig. 6.5: time1.h // Declaration of class Time. // Member functions are defined in time1.cpp 4 // prevent multiple inclusions of header file #ifndef TIME1_H #define TIME1_H 8 // Time abstract data type definition 10 class Time { 11 12 public: Time(); // constructor void setTime( int, int, int ); // set hour, minute, second void printUniversal(); // print universal-time format void printStandard(); // print standard-time format 17 18 private: int hour; // (24-hour clock format) int minute; // int second; // 22 23 }; // end class Time 24 25 #endif Preprocessor code to prevent multiple inclusions. time1.h (1 of 1) Code between these directives not included if name TIME1_H already defined. “If not defined” Preprocessor directive defines name TIME1_H. Naming convention: header file name with underscore replacing period.

28 Include header file time1.h.
// Fig. 6.6: time1.cpp // Member-function definitions for class Time. #include <iostream> 4 using std::cout; 6 #include <iomanip> 8 using std::setfill; 10 using std::setw; 11 12 // include definition of class Time from time1.h 13 #include "time1.h" 14 15 // Time constructor initializes each data member to zero. 16 // Ensures all Time objects start in a consistent state. 17 Time::Time() 18 { hour = minute = second = 0; 20 21 } // end Time constructor 22 time1.cpp (1 of 3) Include header file time1.h. Name of header file enclosed in quotes; angle brackets cause preprocessor to assume header part of C++ Standard Library.

29 23 // Set new Time value using universal time. Perform validity
24 // checks on the data values. Set invalid values to zero. 25 void Time::setTime( int h, int m, int s ) 26 { hour = ( h >= 0 && h < 24 ) ? h : 0; minute = ( m >= 0 && m < 60 ) ? m : 0; second = ( s >= 0 && s < 60 ) ? s : 0; 30 31 } // end function setTime 32 33 // print Time in universal format 34 void Time::printUniversal() 35 { cout << setfill( '0' ) << setw( 2 ) << hour << ":" << setw( 2 ) << minute << ":" << setw( 2 ) << second; 39 40 } // end function printUniversal 41 time1.cpp (2 of 3)

30 time1.cpp (3 of 3) 42 // print Time in standard format
43 void Time::printStandard() 44 { cout << ( ( hour == 0 || hour == 12 ) ? 12 : hour % 12 ) << ":" << setfill( '0' ) << setw( 2 ) << minute << ":" << setw( 2 ) << second << ( hour < 12 ? " AM" : " PM" ); 49 50 } // end function printStandard time1.cpp (3 of 3)

31 // Fig. 6.7: fig06_07.cpp // Program to test class Time. // NOTE: This file must be compiled with time1.cpp. #include <iostream> 5 using std::cout; using std::endl; 8 // include definition of class Time from time1.h 10 #include "time1.h" 11 12 int main() 13 { Time t; // instantiate object t of class Time 15 // output Time object t's initial values cout << "The initial universal time is "; t.printUniversal(); // 00:00:00 cout << "\nThe initial standard time is "; t.printStandard(); // 12:00:00 AM 21 t.setTime( 13, 27, 6 ); // change time 23 fig06_07.cpp (1 of 2) Include header file time1.h to ensure correct creation/manipulation and determine size of Time class object.

32 fig06_07.cpp (2 of 2) fig06_07.cpp output (1 of 1)
// output Time object t's new values cout << "\n\nUniversal time after setTime is "; t.printUniversal(); // 13:27:06 cout << "\nStandard time after setTime is "; t.printStandard(); // 1:27:06 PM 29 t.setTime( 99, 99, 99 ); // attempt invalid settings 31 // output t's values after specifying invalid values cout << "\n\nAfter attempting invalid settings:" << "\nUniversal time: "; t.printUniversal(); // 00:00:00 cout << "\nStandard time: "; t.printStandard(); // 12:00:00 AM cout << endl; 39 return 0; 41 42 } // end main fig06_07.cpp (2 of 2) fig06_07.cpp output (1 of 1) The initial universal time is 00:00:00 The initial standard time is 12:00:00 AM Universal time after setTime is 13:27:06 Standard time after setTime is 1:27:06 PM

33 6.8 Controlling Access to Members
public Presents clients with a view of the services the class provides (interface) Data and member functions are accessible private Default access mode Data only accessible to member functions and friends private members only accessible through the public class interface using public member functions protected Chapter 9 (friends can also access data)

34 Errors produced by attempting to access private members.
// Fig. 6.8: fig06_08.cpp // Demonstrate errors resulting from attempts // to access private class members. #include <iostream> 5 using std::cout; 7 // include definition of class Time from time1.h #include "time1.h" 10 11 int main() 12 { Time t; // create Time object 14 15 t.hour = 7; // error: 'Time::hour' is not accessible 17 // error: 'Time::minute' is not accessible cout << "minute = " << t.minute; 20 return 0; 22 23 } // end main fig06_08.cpp (1 of 1) Recall data member hour is private; attempts to access private members results in error. Data member minute also private; attempts to access private members produces error. Errors produced by attempting to access private members. D:\cpphtp4_examples\ch06\Fig6_06\Fig06_06.cpp(16) : error C2248: 'hour' : cannot access private member declared in class 'Time' D:\cpphtp4_examples\ch06\Fig6_06\Fig06_06.cpp(19) : error C2248: 'minute' : cannot access private member declared in class 'Time'

35 6.9 Access Functions and Utility Functions
private functions that support the operation of public functions Not intended to be used directly by clients (and cannot be used by clients, or it will cause a compiler error) Access functions public functions that read/display data or check conditions set/get functions and predicate functions (isEmpty) Allow public functions to check private data Following example Program to take in monthly sales and output the total Implementation not shown, only access functions

36 Create object s, an instance of class SalesPerson
87 // Fig. 6.9: fig06_09.cpp 88 // Demonstrating a utility function 89 // Compile with salesp.cpp 90 #include "salesp.h" 91 92 int main() 93 { 94 SalesPerson s; // create SalesPerson object s 95 96 s.getSalesFromUser(); // note simple sequential code 97 s.printAnnualSales(); // no control structures in main 98 return 0; 99 } Create object s, an instance of class SalesPerson Use access functions to gather and print data (getSalesFromUser and printAnnualSales). Utility functions actually calculate the total sales, but the user is not aware of these function calls. Notice how simple main() is – there are no control structures, only function calls. This hides the implementation of the program.  OUTPUT Enter sales amount for month 1: Enter sales amount for month 2: Enter sales amount for month 3: Enter sales amount for month 4: Enter sales amount for month 5: Enter sales amount for month 6: Enter sales amount for month 7: Enter sales amount for month 8: Enter sales amount for month 9: Enter sales amount for month 10: Enter sales amount for month 11: Enter sales amount for month 12: The total annual sales are: $

37 6.8 Controlling Access to Members
Class member access Default private Explicitly set to private, public, protected struct member access Default public Access to class’s private data Controlled with access functions (accessor methods) Get function Read private data Set function Modify private data

38 6.10 Initializing Class Objects: Constructors
Initialize data members Or can set later Same name as class No return type Initializers Passed as arguments to constructor In parentheses to right of class name before semicolon Class-type ObjectName( value1,value2,…); Default arguments may also be specified in the constructor prototype

39 Default constructor specifying all arguments.
// Fig. 6.12: time2.h // Declaration of class Time. // Member functions defined in time2.cpp. 4 // prevent multiple inclusions of header file #ifndef TIME2_H #define TIME2_H 8 // Time abstract data type definition 10 class Time { 11 12 public: Time( int = 0, int = 0, int = 0); // default constructor void setTime( int, int, int ); // set hour, minute, second void printUniversal(); // print universal-time format void printStandard(); // print standard-time format 17 18 private: int hour; // (24-hour clock format) int minute; // int second; // 22 23 }; // end class Time 24 25 #endif time2.h (1 of 1) Default constructor specifying all arguments.

40 Initialize Time objects using default arguments.
// Fig. 6.14: fig06_14.cpp // Demonstrating a default constructor for class Time. #include <iostream> 4 using std::cout; using std::endl; 7 // include definition of class Time from time2.h #include "time2.h" 10 11 int main() 12 { Time t1; // all arguments defaulted Time t2( 2 ); // minute and second defaulted Time t3( 21, 34 ); // second defaulted Time t4( 12, 25, 42 ); // all values specified fig06_14.cpp (1 of 2) Initialize Time objects using default arguments.

41 6.12 Destructors Destructors Special member function
Same name as class Preceded with tilde (~) No arguments No return value Cannot be overloaded Performs “termination housekeeping” Before system reclaims object’s memory Reuse memory for new objects No explicit destructor Compiler creates “empty” destructor”

42 6.13 When Constructors and Destructors Are Called
Constructors and destructors called automatically Order depends on scope of objects Global scope objects Constructors called before any other function (including main) Destructors called when main terminates (or exit function called) Destructors not called if program terminates with abort Automatic local objects Constructors called when objects are defined Each time it enters scope of the object Destructors called when objects leave scope i.e., when the block in which they are defined is exited Destructors not called if the program ends with exit or abort

43 6.13 When Constructors and Destructors Are Called
Static local objects Constructors called when execution reaches the point where the objects are defined (called once) Destructors called when main terminates or the exit function is called Destructors not called if the program ends with abort

44 Constructor and destructor member functions.
// Fig. 6.15: create.h // Definition of class CreateAndDestroy. // Member functions defined in create.cpp. #ifndef CREATE_H #define CREATE_H 6 class CreateAndDestroy { 8 public: CreateAndDestroy( int, char * ); // constructor ~CreateAndDestroy(); // destructor 12 13 private: int objectID; char *message; 16 17 }; // end class CreateAndDestroy 18 19 #endif create.h (1 of 1) Constructor and destructor member functions. private members to show order of constructor, destructor function calls.

45 Output message to demonstrate timing of constructor function calls.
// Fig. 6.16: create.cpp // Member-function definitions for class CreateAndDestroy #include <iostream> 4 using std::cout; using std::endl; 7 // include CreateAndDestroy class definition from create.h #include "create.h" 10 11 // constructor 12 CreateAndDestroy::CreateAndDestroy( int objectNumber, char *messagePtr ) 14 { objectID = objectNumber; message = messagePtr; 17 cout << "Object " << objectID << " constructor runs " << message << endl; 20 21 } // end CreateAndDestroy constructor 22 create.cpp (1 of 2) Output message to demonstrate timing of constructor function calls.

46 Output message to demonstrate timing of destructor function calls.
24 CreateAndDestroy::~CreateAndDestroy() 25 { // the following line is for pedagogic purposes only cout << ( objectID == 1 || objectID == 6 ? "\n" : "" ); 28 cout << "Object " << objectID << " destructor runs " << message << endl; 31 32 } // end ~CreateAndDestroy destructor Output message to demonstrate timing of destructor function calls. create.cpp (2 of 2)

47 Create variable with global scope.
// Fig. 6.17: fig06_17.cpp // Demonstrating the order in which constructors and // destructors are called. #include <iostream> 5 using std::cout; using std::endl; 8 // include CreateAndDestroy class definition from create.h 10 #include "create.h" 11 12 void create( void ); // prototype 13 14 // global object 15 CreateAndDestroy first( 1, "(global before main)" ); 16 17 int main() 18 { cout << "\nMAIN FUNCTION: EXECUTION BEGINS" << endl; 20 CreateAndDestroy second( 2, "(local automatic in main)" ); 22 static CreateAndDestroy third( , "(local static in main)" ); 25 fig06_17.cpp (1 of 3) Create variable with global scope. Create local automatic object. Create static local object.

48 Create local automatic objects. fig06_17.cpp (2 of 3)
create(); // call function to create objects 27 cout << "\nMAIN FUNCTION: EXECUTION RESUMES" << endl; 29 CreateAndDestroy fourth( 4, "(local automatic in main)" ); 31 cout << "\nMAIN FUNCTION: EXECUTION ENDS" << endl; 33 return 0; 35 36 } // end main 37 38 // function to create objects 39 void create( void ) 40 { cout << "\nCREATE FUNCTION: EXECUTION BEGINS" << endl; 42 CreateAndDestroy fifth( 5, "(local automatic in create)" ); 44 static CreateAndDestroy sixth( , "(local static in create)" ); 47 CreateAndDestroy seventh( , "(local automatic in create)" ); 50 Create local automatic objects. fig06_17.cpp (2 of 3) Create local automatic object. Create local automatic object in function. Create static local object in function. Create local automatic object in function.

49 51 cout << "\nCREATE FUNCTION: EXECUTION ENDS\" << endl;
52 53 } // end function create fig06_17.cpp (3 of 3)

50 Global object constructed before main execution and destroyed last.
Object 1 constructor runs (global before main) MAIN FUNCTION: EXECUTION BEGINS Object 2 constructor runs (local automatic in main) Object 3 constructor runs (local static in main) CREATE FUNCTION: EXECUTION BEGINS Object 5 constructor runs (local automatic in create) Object 6 constructor runs (local static in create) Object 7 constructor runs (local automatic in create) CREATE FUNCTION: EXECUTION ENDS Object 7 destructor runs (local automatic in create) Object 5 destructor runs (local automatic in create) MAIN FUNCTION: EXECUTION RESUMES Object 4 constructor runs (local automatic in main) MAIN FUNCTION: EXECUTION ENDS Object 4 destructor runs (local automatic in main) Object 2 destructor runs (local automatic in main) Object 6 destructor runs (local static in create) Object 3 destructor runs (local static in main) Object 1 destructor runs (global before main) Global object constructed before main execution and destroyed last. fig06_17.cpp output (1 of 1) Destructors for local automatic objects in main called in reverse order of constructors. Local static object exists until program termination. Local automatic objects destroyed after function execution ends in reverse order of construction. Local static object constructed on first function call and destroyed after main execution ends.

51 6.14 Using Set and Get Functions
Set functions Perform validity checks before modifying private data Notify if invalid values Indicate with return values Get functions “Query” functions Control format of data returned Providing set and get functions does not make private variables public A set function should ensure that the new value is valid

52 6.15 A Subtle Trap: Returning a Reference to a Private Data Member
Reference to an object Alias for the name of the object May be used on the left side of an assignment statement Reference can receive a value, which changes the original object as well Returning references public member functions can return non-const references to private data members Should be avoided, breaks encapsulation

53 // Fig. 6.21: time4.h // Declaration of class Time. // Member functions defined in time4.cpp 4 // prevent multiple inclusions of header file #ifndef TIME4_H #define TIME4_H 8 class Time { 10 11 public: Time( int = 0, int = 0, int = 0 ); void setTime( int, int, int ); int getHour(); 15 int &badSetHour( int ); // DANGEROUS reference return 17 18 private: int hour; int minute; int second; 22 23 }; // end class Time 24 25 #endif time4.h (1 of 1) Function to demonstrate effects of returning reference to private data member.

54 time4.cpp (1 of 2) 1 // Fig. 6.22: time4.cpp
// Member-function definitions for Time class. 3 // include definition of class Time from time4.h #include "time4.h" 6 // constructor function to initialize private data; // calls member function setTime to set variables; // default values are 0 (see class definition) 10 Time::Time( int hr, int min, int sec ) 11 { setTime( hr, min, sec ); 13 14 } // end Time constructor 15 16 // set values of hour, minute and second 17 void Time::setTime( int h, int m, int s ) 18 { hour = ( h >= 0 && h < 24 ) ? h : 0; minute = ( m >= 0 && m < 60 ) ? m : 0; second = ( s >= 0 && s < 60 ) ? s : 0; 22 23 } // end function setTime 24 time4.cpp (1 of 2)

55 Return reference to private data member hour.
25 // return hour value 26 int Time::getHour() 27 { return hour; 29 30 } // end function getHour 31 32 // POOR PROGRAMMING PRACTICE: 33 // Returning a reference to a private data member. 34 int &Time::badSetHour( int hh ) 35 { hour = ( hh >= 0 && hh < 24 ) ? hh : 0; 37 return hour; // DANGEROUS reference return 39 40 } // end function badSetHour time4.cpp (2 of 2) Return reference to private data member hour.

56 badSetHour returns reference to private data member hour.
// Fig. 6.23: fig06_23.cpp // Demonstrating a public member function that // returns a reference to a private data member. #include <iostream> 5 using std::cout; using std::endl; 8 // include definition of class Time from time4.h 10 #include "time4.h" 11 12 int main() 13 { Time t; 15 // store in hourRef the reference returned by badSetHour int &hourRef = t.badSetHour( 20 ); 18 cout << "Hour before modification: " << hourRef; 20 // use hourRef to set invalid value in Time object t hourRef = 30; 23 cout << "\nHour after modification: " << t.getHour(); 25 fig06_23.cpp (1 of 2) badSetHour returns reference to private data member hour. Reference allows setting of private data member hour.

57 fig06_23.cpp (2 of 2) fig06_23.cpp output (1 of 1)
// Dangerous: Function call that returns // a reference can be used as an lvalue! t.badSetHour( 12 ) = 74; 29 cout << "\n\n*********************************\n" << "POOR PROGRAMMING PRACTICE!!!!!!!!\n" << "badSetHour as an lvalue, Hour: " << t.getHour() << "\n*********************************" << endl; 35 return 0; 37 38 } // end main Can use function call as lvalue to set invalid value. fig06_23.cpp (2 of 2) fig06_23.cpp output (1 of 1) Hour before modification: 20 Hour after modification: 30 ********************************* POOR PROGRAMMING PRACTICE!!!!!!!! badSetHour as an lvalue, Hour: 74 Returning reference allowed invalid setting of private data member hour.

58 6.16 Assignment by Default Memberwise Copy
Assigning objects An object can be assigned to another object of the same type using the assignment operator (=) Member by member copy May not want member by member copy if some members are pointers (see next chapter) Objects may be Passed as function arguments (call-by-value default) Returned from functions (call-by-value default)

59 fig06_24.cpp (1 of 3) 1 // Fig. 6.24: fig06_24.cpp
// Demonstrating that class objects can be assigned // to each other using default memberwise assignment. #include <iostream> 5 using std::cout; using std::endl; 8 // class Date definition 10 class Date { 11 12 public: Date( int = 1, int = 1, int = 1990 ); // default constructor void print(); 15 16 private: int month; int day; int year; 20 21 }; // end class Date 22 fig06_24.cpp (1 of 3)

60 fig06_24.cpp (2 of 3) 23 // Date constructor with no range checking
24 Date::Date( int m, int d, int y ) 25 { month = m; day = d; year = y; 29 30 } // end Date constructor 31 32 // print Date in the format mm-dd-yyyy 33 void Date::print() 34 { cout << month << '-' << day << '-' << year; 36 37 } // end function print 38 39 int main() 40 { Date date1( 7, 4, 2002 ); Date date2; // date2 defaults to 1/1/1990 43 fig06_24.cpp (2 of 3)

61 fig06_24.cpp (3 of 3) fig06_24.cpp output (1 of 1)
cout << "date1 = "; date1.print(); cout << "\ndate2 = "; date2.print(); 48 date2 = date1; // default memberwise assignment 50 cout << "\n\nAfter default memberwise assignment, date2 = "; date2.print(); cout << endl; 54 return 0; 56 57 } // end main Default memberwise assignment assigns each member of date1 individually to each member of date2. fig06_24.cpp (3 of 3) fig06_24.cpp output (1 of 1) date1 = date2 = After default memberwise assignment, date2 =

62 Object-oriented programming (OOP)
6.1 Introduction Object-oriented programming (OOP) Encapsulates data (attributes) and functions (behavior) into packages called classes Information hiding Implementation details are hidden within the classes themselves Classes Classes are the standard unit of programming A class is like a blueprint – reusable Objects are instantiated (created) from the class For example, a house is an instance of a “blueprint class”


Download ppt "Chapter 6: Classes and Data Abstraction"

Similar presentations


Ads by Google