First page Back Continue Last page Summary Graphics
Pointers are dead!
Datatype created in PL/I to access memory a la assembly
Pros: liberty, powerful
Cons:
- unsafe
- don't get along with GC
- char* is not a good representation of strings
- (see perl where substr is seldom used)
- arrays need a proper API
Replaced by references
- no arithmetic operation allowed
- only dereferencing
Notes: