- 论坛徽章:
- 0
|
6.3.2.3 Pointers
1 A pointer to void may be converted to or from a pointer to any incomplete or object
type. A pointer to any incomplete or object type may be converted to a pointer to void
and back again; the result shall compare equal to the original pointer.
2 For any qualifier q, a pointer to a non-q-qualified type may be converted to a pointer to
the q-qualified version of the type; the values stored in the original and converted pointers
shall compare equal.
3 An integer constant expression with the value 0, or such an expression cast to type void
46)
*, is called a null pointer constant. If a null pointer constant is assigned to or
compared for equality to a pointer, the constant is converted to a pointer of that type.
Such a pointer, called a null pointer, is guaranteed to compare unequal to a pointer to any
object or function.
Conversion of a null pointer to another pointer type yields a null pointer of that type.
Anytwo null pointers shall compare equal.
An integer may be converted to any pointer type. The result is implementation-defined,
47)
might not be properly aligned, and might not point to an entity of the referenced type.
Any pointer type may be converted to an integer type; the result is implementation-
defined. If the result cannot be represented in the integer type, the behavior is undefined.
The result need not be in the range of values of anyinteger type.
A pointer to an object or incomplete type may be converted to a pointer to a different
48)
object or incomplete type. If the resulting pointer is not correctly aligned for the
pointed-to type, the behavior is undefined. Otherwise, when converted back again, the
result shall compare equal to the original pointer. When a pointer to an object is
converted to a pointer to a character type, the result points to the lowest addressed byte of
the object. Successive increments of the result, up to the size of the object, yield pointers
to the remaining bytes of the object.
A pointer to a function of one type may be converted to a pointer to a function of another
type and back again; the result shall compare equal to the original pointer. If a converted
pointer is used to call a function whose type is not compatible with the pointed-to type,
the behavior is undefined.
from ansi c standard
[ 本帖最后由 zx_wing 于 2009-12-17 23:02 编辑 ] |
|