Presentation is loading. Please wait.

Presentation is loading. Please wait.

Engineering Classes. Objectives At the conclusion of this lesson, students should be able to: Explain why it is important to correctly manage dynamically.

Similar presentations


Presentation on theme: "Engineering Classes. Objectives At the conclusion of this lesson, students should be able to: Explain why it is important to correctly manage dynamically."— Presentation transcript:

1 Engineering Classes

2 Objectives At the conclusion of this lesson, students should be able to: Explain why it is important to correctly manage dynamically allocated storage. Write programs that correctly use * Destructors to return dynamically allocated storage to the system. * Overloaded assignment operators to make a deep copy when necessary and return dynamically allocated storage to the system. * Copy constructors to make a deep copy when necessary.

3 Memory Management One of the major program design issues in C++ is memory management. The mishandling of dynamically allocated storage in C++ is among the most serious programming errors made when using the language. Many of these issues can be addressed by designing classes as Concrete Data Types.

4 Concrete Data Types One of the goals of good software development in C++ is to construct each class so that it appears, to the applications programmer, to be equivalent to a built-in type for the language. That is, it is well behaved in all of the ways that a standard built-in data type is well behaved. A C++ class written in this way has been termed a “concrete data type''. Although in detail, the implementation of a class is specific to the class, all concrete data types have a similar structure. Some author’s refer to this structure as the orthodox canonical class form.

5 C++ Programs can allocate objects in one of three memory areas. Review The run-time stack The static data area or data segment The heap or free store local variables global and static variables size and amount known at compile time storage allocated at run-time because we don’t know how much or what type of data will be stored when the program is compiled.

6 An object is allocated on the heap using the new operator. The allocated object has no name, but is referenced through a pointer returned by the new operator. Storage allocated using new must be recycled back to the heap when the storage is no longer required. Storage that is no longer accessible, but has not been returned to the heap is called a memory leak.

7 Un-initialized pointers should be set to NULL. Pointers should also be set to NULL after calling delete to return storage to the heap.

8 Destructors All Concrete Data Types must have a destructor if it manages resources through a pointer. When program execution reaches the end of a block in which an object was declared, the storage allocated for that object on the stack is relinquished. If a destructor is defined for the class to which the object belongs, the destructor is called first. The purpose of the destructor is to clean up any resources that the object may have acquired. The most common resource that needs to be managed is storage allocated from the heap.

9 Linked Lists The concepts discussed in this slide set will be illustrated using a linked list. Before going through the examples, it will be necessary that you understand what a linked list is and how they are used. This should be a review of the material presented several weeks ago.

10 Memory Issues list 3 node 12 node 7 9 This diagram illustrates an example of a linked list. In this example, each node of the list is dynamically allocated from the heap and contains an integer value and a pointer to the next node in the list. null

11 list 3 node 12 node 7 9 class List { private: Node* headPtr; int length; public:... }; the List class just contains a pointer to the first node in the list, and an integer containing the number of elements in the list. null

12 list 3 node 12 node 7 9 class Node { private: int data; Node* next; public: Node* getNext( ); … }; Each node object contains an integer data member and a pointer to the next node. The storage for each node is allocated from the heap as it is needed. null

13 list 3 node 12 node 7 9 So … what happens in this case when the list object goes out of scope? With no destructor, the pointer data member in the list object is relinquished when the object goes out of scope. Without this pointer, the first node, and all subsequent nodes, become inaccessible to the program. Since the storage for these nodes is still owned by the program, we have a memory leak. null some block { List myList;... blah … blah … blah... }

14 list 3 node 12 node 7 9 null Can you come up with a destructor that keeps The memory leak from happening?

15 list 3 node 12 node 7 9 head length data next null List::~List { }

16 list 3 node 12 node 7 9 The following destructor will solve the problem. List::~List( ) { delete head; } head length data next this function returns the value of next null List::~List( ) { Node* p = head; while ( p!=NULL) { Node* pnext = p->getNext( ); delete p; p = pnext; } much better Node::~Node( ) { delete next; } delete on NULL ptr is a no op!

17 list 3 node 12 node 7 9 List::~List( ) { Node* p = head; while ( p!=NULL) { Node* pnext = p->getNext( ); delete p; p = pnext; } head length data next this function returns the value of next null p pnext

18 list 3 node 7 9 List::~List( ) { Node* p = head; while ( p!=NULL) { Node* pnext = p->getNext( ); delete p; p = pnext; } head length node 12 data next this function returns the value of next null p pnext

19 list 3 node 7 9 List::~List( ) { Node* p = head; while ( p!=NULL) { Node* pnext = p->getNext( ); delete p; p = pnext; } head length this function returns the value of next null p pnext

20 Assignment Operator We just illustrated how to manage the memory allocated dynamically for Node objects when the list goes out of scope. However, the automatic invocation of the destructor when the object goes out of scope introduces another serious problem. Consider the following …

21 list 3 node 12 node 7 9 list_a list 2 node 21 node 6 list_b null

22 list 3 node 12 node 7 9 list_a list 2 node 21 node 6 list_b list_a = list_b; the default assignment operator does a member-by member copy of each data member in the list objects. 2 Problem: The pointer to this Data has been lost. Memory Leak! null

23 list 2 node 12 node 7 9 list_a list 2 node 21 node 6 list_b Now … suppose list_b goes out of scope. Our destructor, as specified, cleans up the list, returning the storage for each node to the heap. Problem: the pointer in list_a points to memory no longer owned by the program. null

24 list 2 node 12 node 7 9 list_a Storage belonging to the heap. Adding insult to injury, what happens when list_a goes out of scope? this storage gets returned twice! This could totally destroy the memory manager! null

25 We solve this problem by overloading the assignment operator in the List class. The assignment operator must do two things: list_a = list_b; Free the storage used by the left operand (list_a) Make a copy the entire data structure of the right operand (list_b) and point to it in the left operand -– do a deep copy.

26 list 3 node 12 node 7 9 list_a list 2 node 21 node 6 list_b null Free this storage

27 list 3 list_a list 2 node 21 node 6 list_b null node 21 node 6 null Make a copy the entire list … 2

28 const List& List::operator=(const List& b) { if (this ==&b) return *this; it is customary to name the parameter ‘b’ always pass the operand as a constant reference return a List reference to allow multiple assignment first, check to make sure that we are not doing the assignment a = a; We don’t want to clean up storage for a if this is the case.

29 const List& List::operator=(const List& b) { if (this ==&b) return *this; Node* p = head; while (p != NULL) { Node* pnext = p->getNext( ); delete p; p = pnext; } this code cleans up the storage allocated to the left hand list. Note: It’s the same code we wrote for the destructor.

30 Next, we are going to do the copy. We are going to do what is called a deep copy. That is, we are going to create a complete copy of the data structure that is on the right hand side. A shallow copy only copies pointers, not what they point to.

31 length = b.length; p = NULL; Node* q = b.getHead( ); while (q != NULL) { Node* n = new Node; n->setNext (NULL); n->setData (q->getData( )); if (p == NULL) head = n; else p->setNext (n); p = n; q = q->getNext ( ); } return *this; start by copying the length data. set the Node* p to Null, we will use this later. then declare another Node* q, and set it to the head data member in list b.

32 list 2 list_a list 2 node 6 list_b q n p NULL 21 length = b.length; P = NULL; Node *q = b.getHead( );

33 length = b.length; p = NULL; Node* q = b.getHead( ); while (q != NULL) { Node* n = new Node; n->setNext (NULL); n->setData (q->getData( )); if (p == NULL) head = n; else p->setNext (n); p = n; q = q->getNext ( ); } return *this; Now, allocate storage for the first node in the new list. set its pointer to the next node to NULL. get the data member of the current node in the right-hand list and store its value in this new node.

34 list 2 list_a list 2 node 6 list_b q n p NULL 21 q points to the current node in the right hand list n points to the new node just created n -> setNext (NULL); n -> setData (q.getData( )); Node *n = new Node;

35 length = b.length; p = NULL; Node* q = b.getHead( ); while (q != NULL) { Node* n = new Node; n->setNext (NULL); n->setData (q.getData( )); if (p == NULL) head = n; else p->setNext (n); p = n; q = q->getNext ( ); } return *this; If this is the first node store its pointer in the list object.

36 list 2 list_a list 2 node 6 list_b q n p NULL 21 head if (p == NULL) head = n; 21

37 length = b.length; p = NULL; Node* q = b.getHead( ); while (q != NULL) { Node* n = new Node; n->setNext (NULL); n->setData (q.getData( )); if (p == NULL) head = n; else p->setNext (n); p = n; q = q->getNext ( ); } return *this; set to point to the end node in left hand list, the one we just created set to point to the next node in the right hand list.

38 list 2 list_a list 2 node 6 list_b q n p NULL head p = n; 21 q = q->getNext( );

39 We have copied the List Object and the first Node. Since q is not null (it points to a node) go through the while block again.

40 list 2 list_a list 2 node list_b list_a = list_b; q n p NULL head 21 Node* n = new Node; n->setNext (NULL); n->setData (q.getData( )); NULL 6

41 list 2 list_a list 2 node list_b list_a = list_b; q n p head 21 NULL 6 6 else p->setNext (n); p is not null, so … NULL p = n; q = q->getNext ( );

42 We have successfully copied the second node from the right-hand list. q is now = NULL, so we drop out of the loop.

43 Copy Constructor We have fixed the assignment operator so that is correctly creates a copy of the object. However, objects also get copied when passed by value. When a function is called, all of the function arguments are copied into local variables associated with the function. When the function exits, these variables go out of scope and are destroyed. This will cause similar problems to the ones we just discussed with the default assignment operator.

44 list_a 3 node 12 node 7 9 Consider the list shown. What happens in the function invocation double average (List a);

45 list_a 3 node 12 node 7 9 stack when the function is called, a copy of the list object goes on the stack. The default is a shallow copy …. 3

46 list_a 3 node 12 node 7 9 stack when the function exits, all of the variables associated with the function go out of scope. This includes the copy of the list object passed on the stack. When it goes out of scope, its destructor is called … 3 Oh-oh!

47 The Copy Constructor List::List(const List& b) { length = b.length; Node* p =NULL; Node* q = b.head; while (q != NULL) { Node* n = new Node; n->getNext (NULL); n->setData (q->getData( )); if (p == NULL) head = n; else p->setNext (n); p = n; q = q.getNext( ); } If this looks familiar, it is because it is the same code we used to copy the object in the overloaded assignment operator. this is a copy constructor because it takes an object of its own type as a parameter. the compiler invokes this code automatically whenever it needs to create a copy of the object.

48 Factoring Common Code There is a lot of common code between the destructor, the assignment operator, and the copy constructor. We can factor this common free and copy code out. Then the destructor, copy constructor, and assignment operator look as shown in the following slide.

49 List::List (const List& b) { copy(b); } List::~List( ) { free( ); } const List& List::operator=(const List& b) { if (this != &b) { free( ); copy(b); } return *this; }

50 The Run-Time Stack A stack is a first-in last-out data structure.

51 The Run-Time Stack Data comes off of the stack in the opposite order of how it was out on.

52 The Run-Time Stack When a function is invoked, space is allocated on the stack for: the function’s parameters the function’s return address the function’s locally declared variables This is called an Activation Record or Stack Frame parameters return address Local variables Stack frame for a( ) parameters return address Local variables Stack frame for b( )

53 Reference Counts Suppose that two objects share a common value: value How would you manage this if the value were dynamically allocated?

54 Reference Counts Suppose that two objects share a common value: value How would you manage this if the value were dynamically allocated? 2 Reference Count

55 Reference Counts What would the destructor do in this case? value 2 Reference Count 1

56 The Bridge Pattern Also known as the Handle/Body pattern, the bridge pattern provides a way for the programmer to completely hide the details of an implementation.

57 C++ provides encapsulation and data abstraction by using the private keyword to hide the details of a class’s implementation. However, the private keyword only prevents access to the class’s private elements, it does not really hide them. A programmer only need look at the class’s header file to glean a great deal of information about how a class is implemented. What if you really want to hide the details? For example, what if you have a proprietary algorithm you don’t want users of your class to know about.

58 Example class Handle { public: Handle ( ); ~Handle( ); void foo ( ); private: Impl* _theImpl; }; The Impl class contains the actual implementation details. The pointer _theImpl is used to pass a request on to an object of the Impl class. For example, in the Handle class, the foo( ) function might be written as void Handle::foo ( ) { _theImpl -> foo( ); }

59 A good paper on the Bridge design pattern can be found here:


Download ppt "Engineering Classes. Objectives At the conclusion of this lesson, students should be able to: Explain why it is important to correctly manage dynamically."

Similar presentations


Ads by Google