![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.06.05 > Chapter 5 Expressions
and Operators ![]() Pointer Operators (*, ->, &) |
|
A pointer variable is a variable that can hold the address of an object. To declare a pointer variable, you precede the variable name with an asterisk. The following declaration, for example, makes ptr a variable that can hold addresses of long int variables: long *ptr; The data type, long in this case, refers to the type of variable that ptr can point to. To assign a pointer variable with the virtual address of a variable, you can use the address-of operator &. For instance, the following is legal: long *ptr; But this is illegal: long *ptr; The following program illustrates the difference between a pointer variable and an integer variable. /* Program name is "ptr_example1". */ If you run this program (in 32-bit mode), the output looks something like this: The value of j is: 1 To dereference a pointer (get the value stored at the pointer address), use the * operator. The program below shows how dereferencing works: /* Program name is "ptr_example2". */ The output from this program looks something like this: The address of p_ch is 7b033240 This is a roundabout and somewhat contrived example that assigns the character A to both ch1 and ch2. It does, however, illustrate the effect of the dereference (*) operator. The variable ch1 is initialized to A. The first printf() call displays the address of the pointer variable p_ch. In the next step, p_ch is assigned the address of ch1, which is also displayed. Finally, the dereferenced value of p_ch is displayed and ch2 is assigned to it. The expression *p_ch is interpreted as “Take the address value stored in p_ch and get the value stored at that address.” This gives us a new way to look at the declaration. The data type in the pointer declaration indicates what type of value results when the pointer is dereferenced. For instance, the declaration float *fp; means that when *fp appears as an expression, the result will be a float value. The expression *fp can also appear on the left side of an expression: *fp = 3.15; In this case, we are storing a value (3.15) at the location designated by the pointer fp. This is different from fp = 3.15; which attempts to store the address 3.15 in fp. This, by the way, is illegal, because addresses are not the same as floating-point values. When you assign a value through a dereferenced pointer, make sure that the data types agree. For example: /* Program name is "ptr_example3". */ The result is The value of f is: 1170.000000 In the preceding example, instead of getting the value of f, g gets an erroneous value because ip is a pointer to an int, not a float. The HP C compiler issues a warning message when a pointer type is unmatched. If you compile the preceding program, for instance, you receive the following message: cc: "ptr_example3.c", line 9: warning 604: Pointers are not The following arithmetic operations with pointers are legal:
All other arithmetic operations with pointers are illegal. When you add or subtract an integer to or from a pointer, the compiler automatically scales the integer to the pointer's type. In this way, the integer always represents the number of objects to jump, not the number of bytes. For example, consider the following program fragment: int x[10], *p1x = x, *p2x; Since pointer p1x points to a variable (x) that is 4 bytes long, then the expression p1x + 3 actually increments p1x by 12 (4 * 3), rather than by 3. It is legal to subtract one pointer value from another, provided that the pointers point to the same type of object. This operation yields an integer value that represents the number of objects between the two pointers. If the first pointer represents a lower address than the second pointer, the result is negative. For example, &a[3] - &a[0] evaluates to 3, but &a[0] - &a[3] evaluates to -3. It is also legal to subtract an integral value from a pointer value. This type of expression yields a pointer value. The following examples illustrate some legal and illegal pointer expressions: long *p1, *p2; Arrays and pointers have a close relationship in the C language. You can exploit this relationship in order to write more efficient code. See the discussion of “Array Subscripting ([ ]) ” for more information. A pointer to one type may be cast to a pointer to any other type. For example, in the following statements, a pointer to an int is cast to a pointer to a char. Presumably, the function func() expects a pointer to a char, not a pointer to an int. int i, *p = &i; As a second example, a pointer to a char is cast to a pointer to struct H: struct H { See “Cast Operator ” for more information about the cast operator. It is always legal to assign any pointer type to a generic pointer, and vice versa, without a cast. For example: float x, *fp = &x; In both these cases, the pointers are implicitly cast to the target type before being assigned. The C language supports the notion of a null pointer — that is, a pointer that is guaranteed not to point to a valid object. A null pointer is any pointer assigned the integral value 0. For example: char *p; In this one case — assignment of 0 — you do not need to cast the integral expression to the pointer type. Null pointers are particularly useful in control-flow statements, since the zero-valued pointer evaluates to false, whereas all other pointer values evaluate to true. For example, the following while loop continues iterating until p is a null pointer: char *p; This use of null pointers is particularly prevalent in applications that use arrays of pointers. The compiler does not prevent you from attempting to dereference a null pointer; however, doing so may trigger a run-time access violation. Therefore, if it is possible that a pointer variable is a null pointer, you should make some sort of test like the following when dereferencing it: if (px && *px) /* if px = 0, expression will short-circuit Null pointers are a portable feature. Example 5-1 Accessing a 1-Dimensional Array Through Pointers
If you execute this program, you get the following output: Enter a word -- Marilyn Example 5-2 Accessing a 2-Dimensional Array Through Pointers
If you execute this program, you get the following output: Which name do you want to retrieve? |
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|