Objects now control their own destiny with revolutionary reference counting technique!
Reference counting is a method that allows objects to be safely shared. Instead of someone else deciding when an object should be deleted, the object itself keeps track of how many users are currently using it. As long as someone is using the object, it will remain available. This technique is commonly used for COM objects.