gpt4 book ai didi

c++ - auto_ptr 到普通指针的转换

转载 作者:太空狗 更新时间:2023-10-29 19:46:32 25 4
gpt4 key购买 nike

我们能否将 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 到普通指针的转换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10413418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com