English 中文(简体)
为何扩大指针
原标题:Why scoped pointers in boost

范围指针的目标是什么? 据我了解, 范围指针在一个代码区块内管理内存。 如果我想在一个区块内声明一个变量, 我可以在堆叠上声明, 而不担心清理 。

问题回答

如果它具有动态大小或类型,则不会。 此外, 范围指针可以互换, 在 C++11 unique_ ptr 中, 可以移动, 所以它们不会严格范围 。

与基于堆叠的数据不同, 范围_ ptr 有重置() 成员, 换句话说, 您可以构造/ 破坏心脏内容。 这样, 您可以使用一个空指针( 技术上的 < code> operator until-bool- type ) 作为标志, 显示在任何特定时间是否存在一个已建物体。 它还可以允许您在需要时, 将构造/ 销毁序列与变量范围分开 。

另外,考虑您可以宣布一个范围_ptr为阶级成员,而不仅仅是堆叠变量。docs 建议使用范围_ptr来实施控点/body idom(以隐藏分类执行细节)。

最后,为了详细解释死母体的“如果是动态型的”,你可以使用范围_ptr来实施 < a href="http://en.wikipedia.org/wiki/polyformalism_in_object-object-foold_programming",rel=“不跟随 noreferrer'>polyformic 操作 :

{
scoped_ptr<Base> a( mode ? new DerivedA : new DerivedB );
a->polymorphic_function();
}

使用 < em> 简单 的堆叠分配方式无法真正做到这一点 。


另见:C+/0x united_ptr 取代Speed_ptr 拥有权?

要点是, 您可以在特定词汇范围内创建和清理一个指针。 它可以在多种情况下有用, 它可以确保您没有内存泄漏, 如果您要明确使用不推荐的 < code> new , 可以忘记一个 < code> delete

您应该记住, < code> bowst:: scoped_ ptr 是 < 坚固 > 不可复制 < / 坚固 >, 因而在它整个寿命期内完全拥有它的资源。 这也使得它更安全, 也就是 < code > bowest:: 共享_ ptr , 因为它避免复制资源或意外共享资源 。

{ //Some Scope

  boost::scoped_ptr<int> i_ptr;
  // do something with pointer

} // leave scope, pointer is cleaned up

线索堆叠通常有内存限制(见线索堆叠大小)。

有时指针也可能从外部传给你,需要在此范围内删除(例如,如果投出例外,线下的任何删除电话不会被执行)。所以你需要用某种方式自动地清除指针。

void foo(Object*obj)
{
    //this will ensure that object gets cleaned up even if doFoo() throws an exception
    boost::scoped_ptr<Object> objCleaner(obj);
    obj->doFoo();
}




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签