The result of applying the operators +, -, ++, or -- to a pointer depends on the type of object pointed to. When an arithmetic operator is applied to a pointer p of type T*, p is assumed to point to an element of an array of objects of type T.
Subtraction of pointers is defined only when both pointers point to elements of the same array. In this case the difference is an int equal to the number of array elements between the two elements.
The results of pointer arithmetic are undefined outside the context of an array. It is the responsibility of the programmer to ensure that pointer arithmetic is used appropriately.
Example 22.4. src/arrays/pointerArith.cpp
[ . . . . ] int main() { using namespace std; int y[] = {3, 6, 9}; int x = 23; int* px; px = &y; <-- 1 px = y; <-- 2 cout << "What's next: " << *++px << endl; cout << "What's next: " << *++px << endl; cout << "What's next: " << *++px << endl; cout << "What's next: " << *++px << endl; return 0; }
|
If we ran the above example, we might[2] see something like this:
[2] In general, accessing memory beyond the boundary of an array is nonportable, and since that is what we are doing (on purpose), the results will also be nonportable.
What's next: 6 What's next: 9 What's next: 23 What's next: -1073751080
Notice that neither the compiler nor the run-time system reported an error message. C++ happily reads from arbitrary memory addresses and reports them in the type of your choice, giving the C++ developer great power and many opportunities to make great errors.
Arrays, Functions, and Return Values |
Part I: Introduction to C++ and Qt 4
C++ Introduction
Classes
Introduction to Qt
Lists
Functions
Inheritance and Polymorphism
Part II: Higher-Level Programming
Libraries
Introduction to Design Patterns
QObject
Generics and Containers
Qt GUI Widgets
Concurrency
Validation and Regular Expressions
Parsing XML
Meta Objects, Properties, and Reflective Programming
More Design Patterns
Models and Views
Qt SQL Classes
Part III: C++ Language Reference
Types and Expressions
Scope and Storage Class
Statements and Control Structures
Memory Access
Chapter Summary
Inheritance in Detail
Miscellaneous Topics
Part IV: Programming Assignments
MP3 Jukebox Assignments
Part V: Appendices
MP3 Jukebox Assignments
Bibliography
MP3 Jukebox Assignments