auto_ptr是如何实现智能指针 auto_ptr是如何实现智能指针,主要思想在于将指针包装后存放在栈上,这样就能自动清除工作,这是内存栈的特点。int a = 0; //a变量存放在栈上哪auto_ptr是如何实现呢?