1 CMSC 202 Pointers Dynamic Memory Allocation. 2 A simple variable A variable is drawn as a labeled box int x; X :

Slides:



Advertisements
Similar presentations
Chapter 6 Data Types
Advertisements

Programming and Data Structure
© Janice Regan, CMPT 128, February CMPT 128: Introduction to Computing Science for Engineering Students Pointers.
Unions The storage referenced by a union variable can hold data of different types subject to the restriction that at any one time, the storage holds data.
Pointers in C Rohit Khokher
Programming in C Pointers and Arrays, malloc( ). 7/28/092 Dynamic memory In Java, objects are created on the heap using reference variables and the new.
Kernighan/Ritchie: Kelley/Pohl:
Pointers Typedef Pointer Arithmetic Pointers and Arrays.
1 Pointers (Walls & Mirrors - Beginning of Chapter 4)
6/10/2015C++ for Java Programmers1 Pointers and References Timothy Budd.
Main Index Contents 11 Main Index Contents Pointer Illustration Pointer Illustration Vertical / Horizontal View. Vertical / Horizontal View. Data Addresses.
Starting out with C++1 Chapter 9 – Pointers Getting the address of a Variable Why do we have pointers? Indirection – difference between –Will you go out.
Pointers. Topics Pointers Pointer Arithmetic Pointers and Arrays.
Main Index Contents 11 Main Index Contents Pointer Illustration Pointer Illustration Vertical / Horizontal View. Vertical / Horizontal View. Data Addresses.
Linked Lists Chained nodes of information create what are called linked lists, with each node providing a link to the next node. A useful feature of linked.
Even More C Programming Pointers. Names and Addresses every variable has a location in memory. This memory location is uniquely determined by a memory.
Adapted from Dr. Craig Chase, The University of Texas at Austin.
LECTURE 4: INFORMATION REPRESENTATION (PART II) COMP26120: ALGORITHMS AND IMPERATIVE PROGRAMMING.
Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes
C++ Programming: Program Design Including Data Structures, Fourth Edition Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes.
Pointer Data Type and Pointer Variables
Data Structures Using C++ 2E Chapter 3 Pointers and Array-Based Lists.
C++ Programming: From Problem Analysis to Program Design, Fourth Edition Chapter 14: Pointers, Classes, Virtual Functions, and Abstract Classes.
Prof. amr Goneid, AUC1 CSCE 110 PROGRAMMING FUNDAMENTALS WITH C++ Prof. Amr Goneid AUC Part 10. Pointers & Dynamic Data Structures.
CMSC 202 Lesson 13 Pointers & Dynamic Memory. Warmup Overload the subtraction operator on two Money objects as a FRIEND! class Money { public: _______________.
Addresses in Memory When a variable is declared, enough memory to hold a value of that type is allocated for it at an unused memory location. This is.
1 Programming with Pointers Turgay Korkmaz Office: SB Phone: (210) Fax: (210) web:
Overloading Binary Operators Two ways to overload –As a member function of a class –As a friend function As member functions –General syntax Data Structures.
Computer Science and Software Engineering University of Wisconsin - Platteville 2. Pointer Yan Shi CS/SE2630 Lecture Notes.
C++ Programming: From Problem Analysis to Program Design, Second Edition1 Objectives In this chapter you will: Learn about the pointer data type and pointer.
1 Pointers Arrays have a disadvantage: Their size must be known at compile time. We would like the capability to allocate an array-like object of any needed.
C++ Data Types Structured array struct union class Address pointer reference Simple IntegralFloating char short int long enum float double long double.
Data Structures Using C++ 2E Chapter 3 Pointers. Data Structures Using C++ 2E2 Objectives Learn about the pointer data type and pointer variables Explore.
Pointer and Array Lists Chapter 3, Summary CS 244 Brent M. Dingle, Ph.D. Game Design and Development Program Department of Mathematics, Statistics, and.
Chapter 12: Pointers, Classes, Virtual Functions, and Abstract Classes.
Pointers: Basics. 2 What is a pointer? First of all, it is a variable, just like other variables you studied  So it has type, storage etc. Difference:
POINTERS.
Review 1 List Data Structure List operations List Implementation Array Linked List.
CPS120: Introduction to Computer Science Lecture 15A Structures.
Pointers *, &, array similarities, functions, sizeof.
C++ Programming: From Problem Analysis to Program Design, Third Edition Chapter 14: Pointers.
C Programming Lecture 16 Pointers. Pointers b A pointer is simply a variable that, like other variables, provides a name for a location (address) in memory.
Lecture – Pointers1 C++ Pointers Joseph Spring/Bob Dickerson School of Computer Science Operating Systems and Computer Networks Based on notes by Bob Dickerson.
Computer And Programming Array and Pointer. Array provides a means to allocating and accessing memory. Pointers, on the other hand, provides a way to.
Pointers It provides a way of accessing a variable without referring to its name. The mechanism used for this is the address of the variable.
CMSC 202 Computer Science II for Majors. CMSC 202UMBC Topics Memory management operators Dynamic memory Project 2 questions.
Pointers in C++. Topics Covered  Introduction to Pointers  Pointers and arrays  Character Pointers, Arrays and Strings  Examples.
Pointers and Arrays An array's name is a constant whose value is the address of the array's first element. For this reason, the value of an array's name.
1 Chapter 15-1 Pointers, Dynamic Data, and Reference Types Dale/Weems.
Array and Pointers An Introduction Unit Unit Introduction This unit covers the usage of pointers and arrays in C++
Announcements Quiz this Thursday 1. Multi dimensional arrays A student got a warning when compiling code like: int foo(char **a) { } int main() { char.
1 CMSC 202 Pointers Dynamic Memory Allocation. 2 A simple variable A variable is drawn as a labeled box int x; X :
Chapter 12: Pointers, Classes, Virtual Functions, Abstract Classes, and Lists.
Pointers and Arrays Dynamic Variables and Arrays.
C++ for Engineers and Scientists Second Edition Chapter 12 Pointers.
Pointers: Basics. 2 Address vs. Value Each memory cell has an address associated with it
Windows Programming Lecture 03. Pointers and Arrays.
You learned how to declare pointer variables how to store the address of a variable into a pointer variable of the same type as the variable how to manipulate.
Pointers A variable that holds an address value is called a pointer variable, or simply a pointer.  What is the data type of pointer variables? It’s not.
DYNAMIC MEMORY ALLOCATION. Disadvantages of ARRAYS MEMORY ALLOCATION OF ARRAY IS STATIC: Less resource utilization. For example: If the maximum elements.
Intro to Pointers in C CSSE 332 Operating Systems
EGR 2261 Unit 11 Pointers and Dynamic Variables
Chapter 13: Pointers, Classes, Virtual Functions, and Abstract Classes
Chapter 10: Pointers 1.
Chapter 12: Pointers, Classes, Virtual Functions, and Abstract Classes
Programming in C Pointer Basics.
Chapter 14: Pointers, Classes, Virtual Functions, and Abstract Classes
CMSC202 Computer Science II for Majors Lecture 04 – Pointers
Programming with Pointers
Programming in C Pointers and Arrays.
Presentation transcript:

1 CMSC 202 Pointers Dynamic Memory Allocation

2 A simple variable A variable is drawn as a labeled box int x; X :

3 Complex Variables A complex variable is drawn as complex boxes (horizontal for array, vertical for struct) struct Astruct { int y; char c; }; int intArray [ 4 ]; Astruct myStruct; intArray: myStruct :

4 Pointer value A pointer value is drawn as an arrow. The arrow points to a picture of the object to which the pointer points. The pointer is said to reference the object. 3

5 Pointer Variable A pointer variable is drawn as a labeled box, like any other simple variable int *iPtr; NULL is a pointer value that doesn’t point to anything and is drawn as a box with a slash iPtr:

6 When a pointer variable points to an object … … the base of the arrow representing the pointer value is placed in the pointer variable’s box 42 iPtr :

7 Assignment to pointer variables A pointer variable receives a value through assignment. –Newly allocated space (using new) –Previously allocated space

8 Allocating space with “new” Graphically depict the result of allocating memory with new by 1.Figure out what kind of space is being allocated 2.Draw a box to represent the allocated space 3.Draw an arrow pointing to the new box and place it’s base in the box representing the pointer variable being assigned to

9 A “new” picture class Car { public:.... private: string m_color; int m_mileage; }; Car *CarPtr; CarPtr = new Car; m_color m_mileage CarPtr

10 What’s in the “new”data? Nothing –Conceptually, after you use new, you get some blank space to fill with data Something –Your new space is not initialized to some zero value. Try allocating some new memory with new and immediately printing its contents. –You will see all sorts of random values. This is related to a security concern we will discuss later.

11 Pointer Assignment Suppose ‘thing1’ and ‘thing2’ are “pointers to int” and ‘thing1’ points to an int whose value is thing1: thing2:

12 Pointer Assignment (cont’d) And now execute the statement thing2 = thing1; 1.Draw a new arrow that points to the box being referenced by the pointer value on the right hand side 2.Place the the base of the new arrow in the box representing the pointer variable on the left hand side 17 thing1: thing2:

13 Dereferencing pointers Given the following picture 17 thing1: The * (star) operator “deferences” a pointer variable. In terms of our picture it means “follow the arrow”. We can use dereferencing to change what a pointer value points to: *thing1 = 42; results in this picture 42 thing1:

14 An exercise for the student Given the following declarations and code typedef int* intPtrArray [ 3 ]; typedef intPtrArray* arrayPtr; arrayPtr cat; int *dog; dog = new int; *dog = 42; cat = new intPtrArray; cat[0] = dog; cat[1] = NULL; cat[2] = new int; *(cat[2]) = 17;

15 The Questions 1.What type of variable is dog? 2.What type of variable is cat? (NO, the answer is NOT arrayPtr). 3.Draw the picture that results from the code

16 The & operator The & (address of) operator is used to create an arrow that points to an existing box. Consider the following code int value; int *pValue; value = 17; pValue = &value; 17 value: pValue: The expression &value gives us a pointer to value

17 Pointers and Arrays A strong relationship between pointers and arrays. –The name of an array is defined to be a pointer to the the first (0 th ) element of the array Consider the declaration int bongo [ 4 ]; The name bongo can be used as a pointer to reference bongo[0]. *bongo = 42; is equivalent to bongo[0] = 42;

18 Pointers to array elements foo: bar: foo + 1 If a pointer value references a particular array element, then adding an integer, n, to that pointer value will result in a new pointer value that references the array element n elements way from the original element

19 Putting these together… … we observe that the nth element of an array called myArray can be referenced as myArray + n Thus, the following expressions are equivalent myArray [n] and *(myArray + n) &myArray [ n ] and myArray + n

20 Using ‘delete’ delete is the operator which is used to recycle memory allocated with new The forms of new and delete must match // for a single object int * x = new int; delete x; // for an array of object int *intp = new int [ 7 ]; delete [ ] intp;

21 A delete example Suppose ‘soup’ is a pointer variable that references an int containing 42 soup: 42 Then the statement delete soup recycles the space referenced by soup. soup: 42

22 A potential problem int *soup, *salad; soup = new int ( 42 ); salad = soup; delete soup; What does the picture of memory look like? What’s the potential problem?

23 A potential security problem Recall that newly allocated space is filled with random data. –Where does that data come from? It’s not truly random, but it is whatever old data was left behind when some program used delete. Your deleted data is not gone; it is floating around somewhere in the computer’s memory, to be reallocated when another program needs the space.

24 A potential security problem So, what happens to the data in a credit card number when you delete it? What if some clever hacker could figure out a way to get that deleted memory reallocated to another program? –To avoid this problem, any sensitive data should have its value changed (set to zero) before calling delete.

25 Multi-dimensional Arrays We declare a static 2-dimensional array as char chArray1 [ 3 ] [ 4 ]; What we envision is chArray1 :

26 Static 2-D array in Memory What we get in memory is chArray1: row column We use double subscripts ( chArray [ 2 ] [ 1 ] ) to reference the elements by row/column. The compiler uses the row number, column number, number of columns and array type to calculate a memory address.

27 A dynamic 2-D array To dynamically allocate a 2-D array, we must create an array of pointers (the rows) in which each row element points to an array of elements (the columns). We need only declare the name of the dynamic array correctly char **chArray2;

28 char **chArray2 This declaration is read as “chArray2 is a pointer to a pointer to a char” In reality, the compiler doesn’t “know” if you plan to use chArray2 to point to one pointer to char or as the name of an array of many pointers to char. When we use it for dynamic 2-D arrays, we use it to point to an array of pointers to char

29 The code // the array of pointers for the rows chArray2 = new char* [ 3 ]; // now allocate the elements of each row for (int r = 0; r < 3; r++) chArray2 [ r ] = new char [ 4 ];

30 Dynamic 2-D Array in Memory chArray2: We can still use double subscript ( chArray [ 2 ] [ 1 ] ) to access the elements. The compiler uses pointer arithmetic to find the memory address.

31 delete’ing a dynamic array To deallocate a dynamically allocated multi- dimensional array, we must deallocate memory in the reverse order that it allocated for (int r = 0; r < 3; r++) delete [ ] chArray2[ r ]; delete [ ] chArray2;

32 Exercises for the student 1.Draw the results of the following code char *fischer; fischer = new char[3]; fischer[0] = ‘p’; fischer[1] = ‘k’; fischer[2] = ‘4’;

33 More exercises 2.Draw the results of the following code struct soprano { int x; char ch[3]; }; typedef soprano* alto; soprano *jane; alto *joe; jane = new soprano; jane->x = 1; jane-> ch[ jane->x ] = ‘G’; joe = new alto[4]; joe[0] = new soprano; joe[0]->ch[2] = ‘Q’; joe[3] = jane;

34 Even more exercises 3. Write the typedefs, declarations and code that will create the picture below foo: 17 42

35 Still more 4. Write the typedefs, declarations and code that will produce the picture below foo: 16 bar: 16

36 And one last exercise 5. Write the typedefs, declarations and code that will produce the picture below. tom: 5