Sharing Pointers and Garbage Collection

Steven J Zeil

September 19, 2013

Course Home   e-mail

1 Shared Structures
 1.1 Singly Linked Lists
 1.2 Doubly Linked Lists
 1.3 Airline Connections
2 Garbage Collection
 2.1 Reference Counting
 2.2 Mark and Sweep
 2.3 Generation-Based Collectors
 2.4 Incremental Collection
3 Strong and Weak Pointers
4 Coming Soon to C++: std Reference Counting
5 Java Programmers Have it Easy

Swearing by Sharing   

We’ve talked a lot about using pointers to share information, but mainly as something that causes problems.


[Previous]