Pointers (Chapter 9) - Seattle...

69
Pointers (Chapter 9 & 11.9) Dr. Yingwu Zhu

Transcript of Pointers (Chapter 9) - Seattle...

Page 1: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Pointers (Chapter 9 & 11.9)

Dr. Yingwu Zhu

Page 2: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 3: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 4: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-4

Getting the Address of a Variable

• Each variable in program is stored at a unique address

• Use address operator & to get address of a variable:

int num = -99;

cout << &num; // prints address

// in hexadecimal

Page 5: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-5

Pointer Variables

• Pointer variable : Often just called a pointer, it's a variable that holds an address – Its content is a memory address

• Because a pointer variable holds the address of another piece of data, it "points" to the data – Analogy: an entry in a yellow book

Page 6: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-6

Something Like Pointers: Arrays

• We have already worked with something similar to pointers, when we learned to pass arrays as arguments to functions.

• For example, suppose we use this statement to pass the array numbers to the showValues function: showValues(numbers, SIZE);

Page 7: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-7

Something Like Pointers : Arrays

The values parameter, in the showValues function, points to the numbers array.

C++ automatically stores the address of numbers in the

values parameter.

void showValues(int* values, int size) { ….. }

Page 8: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-8

Something Like Pointers: Reference Variables

• We have also worked with something like pointers when we learned to use reference variables. Suppose we have this function: void getOrder(int &donuts)

{

cout << "How many doughnuts do you want? ";

cin >> donuts;

}

• And we call it with this code: int jellyDonuts;

getOrder(jellyDonuts);

Page 9: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-9

Something Like Pointers: Reference Variables

The donuts parameter, in the getOrder function, points to the jellyDonuts variable.

C++ automatically stores the address of

jellyDonuts in the donuts parameter.

Page 10: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-10

Pointer Variables

• Pointer variables are yet another way using a memory address to work with a piece of data.

• Pointers are more "low-level" than arrays and reference variables.

• This means you are responsible for finding the address you want to store in the pointer and correctly using it.

Page 11: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-11

Pointer Variables

• Definition:

int *intptr;

• Read as:

“intptr can hold the address of an int”

• Spacing in definition does not matter:

int * intptr; // same as above

int* intptr; // same as above

Page 12: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-12

Pointer Variables

• Assigning an address to a pointer variable: int *intptr;

intptr = &num;

• Memory layout:

num intptr

25 0x4a00

address of num: 0x4a00

Page 13: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-13

Page 14: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-14

The Indirection Operator

• The indirection operator (*) dereferences a pointer.

• It allows you to access the item that the pointer points to. int x = 25;

int *intptr = &x;

cout << *intptr << endl;

This prints 25.

Page 15: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-15

Page 16: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-16

Page 17: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-17

The Relationship Between Arrays and Pointers

• Array name is starting address of array int vals[] = {4, 7, 11};

cout << vals; // displays

// 0x4a00

cout << vals[0]; // displays 4

4 7 11

starting address of vals: 0x4a00

Page 18: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 19: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-19

The Relationship Between Arrays and Pointers

• Array name can be used as a pointer constant:

int vals[] = {4, 7, 11};

cout << *vals; // displays 4

• Pointer can be used as an array name:

int *valptr = vals;

cout << valptr[1]; // displays 7

Page 20: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Pointers & Arrays int array[] = {1,2,3,4};

int *ptr = NULL;

ptr = array;

ptr = &array[0]; /*same as line above*/

printf("array[0] = %d\n",array[0]);

printf("*(array+1)= %d\n",*(array+1));

printf("ptr[2] = %d\n",ptr[2]);

printf("*(ptr+3) = %d\n",*(ptr+3));

What is the output?

Page 21: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-21

Page 22: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-22

Pointers in Expressions

Given: int vals[]={4,7,11}, *valptr;

valptr = vals;

What is valptr + 1?

It means (address in valptr) + (1 * sizeof(int))

cout << *(valptr+1); //displays 7

cout << *(valptr+2); //displays 11

Must use ( ) as shown in the expressions

Page 23: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-23

Array Access

• Array elements can be accessed in many ways:

Array access method Example

array name and [] vals[2] = 17;

pointer to array and [] valptr[2] = 17;

array name and subscript

arithmetic

*(vals + 2) = 17;

pointer to array and

subscript arithmetic

*(valptr + 2) = 17;

Page 24: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-24

Array Access

• Conversion: vals[i] is equivalent to *(vals + i)

• Error prone: No bounds checking performed on array access, whether using array name or a pointer

Page 25: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-25

Page 26: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 27: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-27

Pointer Arithmetic

• Operations on pointer variables:

Operation Example int vals[]={4,7,11};

int *valptr = vals;

++, -- valptr++; // points at 7

valptr--; // now points at 4

+, - (pointer and int) cout << *(valptr + 2); // 11

+=, -= (pointer and int)

valptr = vals; // points at 4

valptr += 2; // points at 11

- (pointer from pointer) cout << valptr–val; // difference

//(number of ints) between valptr

// and val

Page 28: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-28

Page 29: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-29

Page 30: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 31: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-31

Initializing Pointers

• Can initialize at definition time: int num, *numptr = &num;

int val[3], *valptr = val;

• Cannot mix data types: double cost;

int *ptr = &cost; // won’t work

• Can test for an invalid address for ptr with: if (!ptr) ...

• Take-home message: – initialize a pointer to be NULL

– Check validity of a pointer before using it

Page 32: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 33: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-33

Comparing Pointers

• Relational operators (<, >=, etc.) can be used to compare addresses in pointers

• Comparing addresses in pointers is not the same as comparing contents pointed at by pointers: if (ptr1 == ptr2) // compares // addresses

if (*ptr1 == *ptr2) // compares

// contents

Page 34: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 35: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-35

Pointers as Function Parameters

• A pointer can be a parameter

• Works like reference variable to allow change to argument from within function

• Requires: 1) asterisk * on parameter in prototype and heading void getNum(int *ptr); // ptr is pointer to an int

2) asterisk * in body to dereference the pointer

cin >> *ptr;

3) address as argument to the function getNum(&num); // pass address of num to getNum

Page 36: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-36

Example

void swap(int *x, int *y)

{ int temp;

temp = *x;

*x = *y;

*y = temp;

}

int num1 = 2, num2 = -3;

swap(&num1, &num2);

Page 37: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-37

(Program Continues)

Page 38: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-38

Page 39: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-39

Pointers to Constants

• If we want to store the address of a constant in a pointer, then we need to store it in a pointer-to-const.

Page 40: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-40

Pointers to Constants

• Example: Suppose we have the following definitions: const int SIZE = 6;

const double payRates[SIZE] =

{ 18.55, 17.45, 12.85,

14.97, 10.35, 18.89 };

• In this code, payRates is an array of constant doubles.

Page 41: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-41

Pointers to Constants

• Suppose we wish to pass the payRates array to a function? Here's an example of how we can do it.

void displayPayRates(const double *rates, int size)

{

for (int count = 0; count < size; count++)

{

cout << "Pay rate for employee " << (count + 1)

<< " is $" << *(rates + count) << endl;

}

}

The parameter, rates, is a pointer to const double.

Page 42: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-42

Declaration of a Pointer to Constant

Page 43: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Pointers to Constant in Functions

void swap2(const int *a, const int *b){

/*cannot change value at that address*/

int temp = *a; /*no warning*/

*a=*b; /*gives warning*/

*b=temp; /*gives warning*/

}

Page 44: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-44

Constant Pointers

• A constant pointer is a pointer that is initialized with an address, and cannot point to anything else.

• Example int value = 22;

int * const ptr = &value;

Page 45: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-45

Constant Pointers

Page 46: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Constant Pointers

int num1 = 3;

int num2 = 7;

int *const ptr1 = &num1;

/*cannot change address in ptr1*/

int *ptr2 = &num2;

num1++; /*no warning*/

(*ptr1)++; /*no warning*/

ptr1 = ptr2; /*gives warning*/

Page 47: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-47

Constant Pointers to Constants

• A constant pointer to a constant is: – a pointer that points to a constant

– a pointer that cannot point to anything except what it is pointing to

• Example: int value = 22;

const int * const ptr = &value;

Page 48: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-48

Constant Pointers to Constants

Page 49: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Constant Pointers

int num1 = 3, num2 = 7;

const int *const ptr1 = &num1;

/*cannot change address and cannot

change value at that address*/

int *ptr2 = &num2;

num1++; /*no warning*/

(*ptr1)++; /*gives warning*/

ptr1 = ptr2; /*gives warning*/

Page 50: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 51: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-51

Dynamic Memory Allocation

• Can allocate storage for a variable while program is running

• Computer returns address of newly allocated variable

• Uses new operator to allocate memory: double *dptr;

dptr = new double;

• new returns address of memory location

Page 52: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-52

Dynamic Memory Allocation

• Can also use new to allocate array: const int SIZE = 25;

arrayPtr = new double[SIZE];

• Can then use [] or pointer arithmetic to access array: for(i = 0; i < SIZE; i++)

*arrayptr[i] = i * i;

or for(i = 0; i < SIZE; i++)

*(arrayptr + i) = i * i;

• Program will terminate if not enough memory available to allocate

Page 53: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Character Pointers

• char array[] = "this is an array";

– Array of characters + '\0'

– Can change the characters in the array

– Cannot change the array’s address

• char *ptr = "this is a pointer";

– Points to constant characters + '\0'

– Cannot change the string constant

– Can change the pointer value

Page 54: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Character Pointers

#include <stdio.h>

int main(){

char a[] = "character array";

char *b = "constant array";

a=b; /*compiler error: incompatible types in assignment*/

a[0]='C';

b[0]='A'; /*runtime error: Segmentation Fault*/

return 0;

}

Page 55: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-55

Releasing Dynamic Memory

• Use delete to free dynamic memory:

delete fptr;

• Use [] to free dynamic array:

delete [] arrayptr;

• Only use delete with dynamic memory!

Page 56: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-56

Page 57: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-57

Page 58: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-58

Program 9-14 (Continued)

Page 59: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-59

Notice that in line 49 the value 0 is assigned to the sales pointer. It is a good practice to store 0 in a pointer variable after using delete on it. First, it prevents code from inadvertently using the pointer to access the area of memory that was freed. Second, it prevents errors from occurring if delete is accidentally called on the pointer again. The delete operator is designed to have no effect when used on a null pointer.

Page 60: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 61: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-61

Returning Pointers from Functions

• Pointer can be the return type of a function: int* newNum();

• The function must NOT return a pointer to a local variable in the function.

• A function should only return a pointer: – to data that was passed to the function as an

argument, or

– to dynamically allocated memory

Page 62: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

9-62

From Program 9-15

Page 63: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 64: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

11-64

A Student Structure

struct Student

{

int studentID;

string name;

short yearInSchool;

double gpa;

};

Student stu1;

cin >> stu1.studentID; getline(cin, stu1.name);

stu1.gpa = 3.75;

structure tag

structure members

Page 65: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

11-65

Pointers to Structures

• A structure variable has an address

• Pointers to structures are variables that can hold the address of a structure: Student *stuPtr;

• Can use & operator to assign address: stuPtr = &stu1;

• Structure pointer can be a function parameter

Page 66: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

11-66

Accessing Structure Members via Pointer Variables

• Must use () to dereference pointer variable, not field within structure: cout << (*stuPtr).studentID;

• Can use structure pointer operator to eliminate () and use clearer notation:

cout << stuPtr->studentID;

Page 67: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

11-67

From Program 11-9

Page 68: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Outline

• What is a Pointer?

• Arrays vs. Pointers

• Pointer Arithmetic

• Initializing Pointers

• Comparing Pointers

• Pointer As Function Parameters

• Dynamic Memory Allocation

• Return Pointers from Functions

• Pointers to structures

• 2-dim Dynamic Arrays

Page 69: Pointers (Chapter 9) - Seattle Universityfac-staff.seattleu.edu/.../winter13/cpsc152/Pointers.pdf · 2013-01-06 · 9-59 Notice that in line 49 the value 0 is assigned to the sales

Two-Dimensional Arrays

• Visually like a matrix with rows and columns

• Two big questions to answer

– How to allocate a 2-dim array?

– How to de-allocate a 2-dim array?