c – auto_ptr到正常的指针转换

c – auto_ptr到正常的指针转换,第1张

概述我们能够将std :: auto_ptr转换为普通指针吗? class Test { ...... } Test* function() { std::auto_ptr<Test> test(new Test()); return _____//TODO : need to convert this auto_ptr to Te 我们能够将std :: auto_ptr转换为普通指针吗?

class Test    {     ......    }    Test* function()    {      std::auto_ptr<Test> test(new test());      return _____//Todo : need to convert this auto_ptr to Test*    }

是否可以将本地创建的auto_ptr指针转换为普通指针.

解决方法 使用 release()

Test* function(){  std::auto_ptr<Test> test(new test());  return test.release()}
总结

以上是内存溢出为你收集整理的c – auto_ptr到正常的指针转换全部内容,希望文章能够帮你解决c – auto_ptr到正常的指针转换所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1219578.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存