Presentation is loading. Please wait.

Presentation is loading. Please wait.

Computer Programming Lecture 14 C/C++ Pointers

Similar presentations


Presentation on theme: "Computer Programming Lecture 14 C/C++ Pointers"— Presentation transcript:

1 Computer Programming Lecture 14 C/C++ Pointers
Greet class

2 Pointer Variable Declarations and Initialization
Why we need Pointers: Pointes enable programs to create dynamic memory, which can grow at runtime using. The main difference between normal variables and pointers is that, variables contain a value, while pointers contain a memory address. Memory address: We know each memory address contain some value. Thus if pointers contain memory addresses, we can get its value (indirectly). C 7 3 4 173 172 174 175 176 177 178 179 180 181 P 833 832 834 835 836 837 838 839 840 841 C is a variable Memory P is a Pointer ?

3 Pointers A pointer variable must be declared before it can be used.
Examples of pointer declarations: int *a; float *b; char *c; The asterisk, when used as above in the declaration, tells the compiler that the variable is to be a pointer, and the type of data (the value that we get indirectly) that the pointer points to.

4 Referencing The unary operator & gives the address of a variable
The statement P = &C; assigns the address of C to the variable P, and now P points to C To print a pointer, use %p format.

5 Referencing int C; int *P; /* Declare P as a pointer to int */ C = 7;
P = &C; C 7 3 4 172 173 174 175 176 177 178 179 180 181 P 174 3 4 832 833 834 835 836 837 838 839 840 841

6 Dereferencing The unary operator * is the dereferencing operator
Applied on pointers Access the value of object the pointer points to The statement *P = 5; puts in C (the variable pointed by P) the value 5

7 Dereferencing printf(“%d”, *P); /* Prints out ‘7’ */ *P = 177;
printf(“%d”, C); /* Prints out ‘177’ */ P = 177; /* This is unadvisable!! */ C 177 7 3 4 172 173 174 175 176 177 178 179 180 181 P 174 177 3 4 832 833 834 835 836 837 838 839 840 841

8 Review All data (software instructions, variables, arrays) is in memory. Each memory location has an address. A pointer is a C version of the address. * denotes we are accessing or storing the value in the address of the pointer. & denotes we are accessing or storing the memory address in the pointer. If any pointer knows the address of any memory address. It can easily change its value (virus concept). Always remember Only O and NULL evaluate to FALSE.

9 Bits and Bytes Memory is divided into bytes, each of which are further divided into bits Each bit can have a value of 0 or 1 A byte is eight bits Can hold any value from 0 to 255 Memory can be thought of as a sequence of bytes, numbered starting at 0 1 2 3 4 5 6

10 Storing Variables Each variables is stored in some sequence of bytes
Number of bytes depends on what? Number of bytes depends on the data type Can two variables share a byte? Two variables will never share a byte – a variable uses all of a byte, or none of it Example: An int is usually stored as a sequence of two bytes

11 Using the Address This holds true for every language – each variable has to be stored somewhere In C/C++, you can get and use the address For any variable x, &x returns the address of x

12 Pointers & Allocation (1/2)
After declaring a pointer: int *ptr1; ptr1 doesn’t actually point to anything yet. So its address is NULL. . We can either: make it point to something that already exists, ptr1 = &C or allocate room in memory for something new that it will point to… (dynamic memory will discuss later) ptr = NULL Memory

13 Pointers & Allocation (2/2)
Pointing to something that already exists: int *ptr, var1, var2; var1 = 5; ptr = &var1; var2 = *ptr; var1 and var2 have room implicitly allocated for them. ptr ? 5 ? ? 5 var1 var2

14 More C Pointer Dangers void f() { int *ptr; *ptr = 5; }
Declaring a pointer just allocates space to hold the pointer – it does not allocate something to be pointed to! Thus the address is NULL. What does the following code do? We can’t store anything in the pointer (ptr) unless ptr contains some address. void f() { int *ptr; *ptr = 5; }

15 Arithmetic on Pointers
A pointer may be incremented or decremented. This means only address in the pointer is incremented or decremented. An integer (can be constant) may be added to or subtracted from a pointer. Pointer variables may be subtracted from one another. Pointer variables can be used in comparisons, but usually only in a comparison to pointer variables or NULL. Instructor: Most logical operations can be used on pointers as with regular variables, but the programmer must be careful of the results since each program doesn’t have free reign of the entire computer’s memory space. Errors which attempt to use memory not assigned to a certain program will cause what will be seen as a segmentation fault or bus error in UNIX, or Windows’ extreme, more deadly blue screen of death. Pointers can be incremented and decremented. Integers can be added or subtracted from a pointer, and pointers variable may be subtracted from one another. Pointers can also be used in comparisons, but usually only in a comparison to NULL as been shown when testing file pointers for a successful file open.

16 Arithmetic on Pointers
When an integer (n) is added to or subtracted from a pointer (ptr) The new pointer value (ptr) is changed by the ptr address plus (+) n multiple (*) the (bytes of ptr data type). ptr + n * (bytes of ptr data type) Example int *ptr; ptr = 1000; ptr = ptr + 2; // ptr address is now changed to *2 (because integer consumes 2 bytes) New address is now 1004 Instructor: Memory arithmetic is slightly more complicated than standard algebra. Each byte of memory has its own unique address. Remember that different data types use multiple bytes of memory thus span multiple addresses. The UNIX data sizes are reviewed: int: 32 bit – 4 bytes float: 32 bit – 4 bytes double: 64 bit – 8 bytes char: 8 bit – 1 byte So addition of y to a pointer will actually be a multiple of y*x where x is the size of the data type in bytes. In the example shown here, the pointer valptr contains the address of a double precision variable and the address is shown. Each double precision number is 8 bytes. The addition of 2 to the pointer is then 2*8, or 16. Thus we can see the addition of 2 to the pointer adds 16 to the address.

17 Arithmetic on Pointers
Example (2) long *ptr; ptr = 1000; ptr++; *4 = 1004 Example (3) float *ptr; ptr+=3; *8 = 1024 Example (4) int *ptr; int num1 = 0; ptr = &num1; ptr++; = 1004 Address data 1000 1002 num1 1004 1006 1008 Instructor: Memory arithmetic is slightly more complicated than standard algebra. Each byte of memory has its own unique address. Remember that different data types use multiple bytes of memory thus span multiple addresses. The UNIX data sizes are reviewed: int: 32 bit – 4 bytes float: 32 bit – 4 bytes double: 64 bit – 8 bytes char: 8 bit – 1 byte So addition of y to a pointer will actually be a multiple of y*x where x is the size of the data type in bytes. In the example shown here, the pointer valptr contains the address of a double precision variable and the address is shown. Each double precision number is 8 bytes. The addition of 2 to the pointer is then 2*8, or 16. Thus we can see the addition of 2 to the pointer adds 16 to the address. Memory width is 2 bytes

18 Arithmetic on Pointers
Example (5) void main (void) { int *pointer1, *pointer2; int num1 = 93; pointer1 = &num1; //address of num1 pointer2 = pointer1; // pointer1 address is assign to pointer2 cout << *pointer1 << *pointer2; } Address data 1000 1002 1004 1006 1008 num1 = 93 pointer1 = 1002 pointer2 = 1002 Instructor: Memory arithmetic is slightly more complicated than standard algebra. Each byte of memory has its own unique address. Remember that different data types use multiple bytes of memory thus span multiple addresses. The UNIX data sizes are reviewed: int: 32 bit – 4 bytes float: 32 bit – 4 bytes double: 64 bit – 8 bytes char: 8 bit – 1 byte So addition of y to a pointer will actually be a multiple of y*x where x is the size of the data type in bytes. In the example shown here, the pointer valptr contains the address of a double precision variable and the address is shown. Each double precision number is 8 bytes. The addition of 2 to the pointer is then 2*8, or 16. Thus we can see the addition of 2 to the pointer adds 16 to the address.

19 Logical operators on Pointers
We can apply logical operators (<, >, <=, >=, ==, != ) on pointers. But remember pointers can be compared to pointers or NULL Example (6) int *pointer1, *pointer2; // both pointer2 contains NULL addresses int num1 = 93; If ( pointer1 == NULL ) // pointer compared to NULL pointer1 = &num1; pointer2 = &num1; If ( pointer1 == pointer2 ) // pointer compared to pointer cout << “Both pointers are equal”; Instructor: Memory arithmetic is slightly more complicated than standard algebra. Each byte of memory has its own unique address. Remember that different data types use multiple bytes of memory thus span multiple addresses. The UNIX data sizes are reviewed: int: 32 bit – 4 bytes float: 32 bit – 4 bytes double: 64 bit – 8 bytes char: 8 bit – 1 byte So addition of y to a pointer will actually be a multiple of y*x where x is the size of the data type in bytes. In the example shown here, the pointer valptr contains the address of a double precision variable and the address is shown. Each double precision number is 8 bytes. The addition of 2 to the pointer is then 2*8, or 16. Thus we can see the addition of 2 to the pointer adds 16 to the address.

20 Passing Pointers to Function(1)
We know pointers contains two things (address and value in the address). We can pass the pointers to functions as input parameter or output parameter as By value and By address When we pass the pointers to functions by value. It is called passing by value. When we pass the pointers to functions by address. It is called passing by reference.

21 Passing Pointers to Function(1)
Passing by value (Example) void fun1 (int pass_by_value); void main (void) { int *pointer; int num1 = 10; pointer = &num1; fun1 (*pointer); // Pass by value } void fun1 (int pass_by_value) cout << “Value is “ << pass_by_value;

22 Passing Pointers to Function(1)
Passing by reference (Example) void fun1 (int *pass_by_reference); void main (void) { int *pointer; int num1 = 10; pointer = &num1; fun1 (pointer); // address of num1 is passed fun1 (&num1); // address of num1 is passed cout << num1; } void fun1 (int *pass_by_reference) cout << “Value is “ << *pass_by_value; *pass_by_value = 20; Address data 1000 1002 num1 = 10 1004 1006 pointer = 1002 1008


Download ppt "Computer Programming Lecture 14 C/C++ Pointers"

Similar presentations


Ads by Google