智能指针是怎么实现转换为BOOL值的

2024-12-12 21:00:34
推荐回答(1个)
回答1:

普通指针到智能指针的转换 int* iPtr = new int(42); shared_ptr p(iPtr); 智能指针到普通指针的转换 int* pI = p.get();