释放 Glib::RefPtr
使用完指针sourceImage后如何释放它。
Glib::RefPtr<Gdk::Pixbuf> sourceImage = Gdk::Pixbuf::create_from_file(inSourcePath.c_str());
How can i release the pointer sourceImage after finishing using it.
Glib::RefPtr<Gdk::Pixbuf> sourceImage = Gdk::Pixbuf::create_from_file(inSourcePath.c_str());
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如前所述,您不需要释放它。只要让RefPtr超出范围,它就会自动释放。但是,如果由于某种原因您确实想要手动释放它,您可以简单地调用
sourceImage.reset()
As mentioned, you don't need to release it. Just let the RefPtr go out of scope and it will be released automatically. However, if for some reason you do want to release it manually, you can simply call
sourceImage.reset()
您不释放它。
You don't release it.