首页 > 代码库 > Detach

Detach

1     T* Detach() throw()2     {3         T* pt = p;4         p = NULL;5         return pt;6     }