release method

void release()

Implementation

void release() {
  refCount--;
  if (refCount == 0) {
    malloc.free(this);
  }
}