<br><br><div class="gmail_quote">On Tue, Nov 2, 2010 at 8:08 PM, Steve Schveighoffer <span dir="ltr"><<a href="mailto:schveiguy@yahoo.com">schveiguy@yahoo.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
All of these have nothing to do with sealed ranges.  They have to do with data<br>
lifetime.  If you destroy data and then try to access it, you will have problems<br>
with or without sealed ranges.  In addition, only one instance you show has a<br>
sealed range in it.  The rest either don't have ranges or are not sealed.<br>
<br>
Having a sealed range does not necessarily mean that the user cannot shoot<br>
themselves in the foot and delete the data while still maintaining references to<br>
it.  This problem is mostly solved by having the data or at least the pointer to<br>
the data on the heap, destroyed by the GC when no longer needed.<br>
<br>
Even then, this does not rule out the user calling clear on the pointer.<br>
<br>
SealedRange is not a magic bullet for memory issues, and all these issues exist<br>
with or without sealed ranges or expensive copy construction.<br>
<br>
What SealedRange *does* do is allow the container to have complete control over<br>
the storage for the data.  This means it can:<br>
<br>
a) intercept all accesses to the memory, including writes and reads.<br>
b) use abstracted allocation schemes.<br>
<font color="#888888"><br>
-Steve<br>
</font><div><div></div><div class="h5"><br>
<br>
<br>
----- Original Message ----<br>
> From: SHOO <<a href="mailto:zan77137@nifty.com">zan77137@nifty.com</a>><br>
> Another viewpoint.<br>
><br>
> Is  SealedRange really appropriate?<br>
><br>
> All these are caused by the same  problem:<br>
> - <a href="http://ideone.com/x1Zus" target="_blank">http://ideone.com/x1Zus</a><br>
> - <a href="http://ideone.com/iM18Q" target="_blank">http://ideone.com/iM18Q</a><br>
> -  <a href="http://ideone.com/TTin3" target="_blank">http://ideone.com/TTin3</a><br>
> - <a href="http://ideone.com/x4b0o" target="_blank">http://ideone.com/x4b0o</a><br>
><br>
> We should consider  that we grope the common solution for these problems.<br>
> It is the method that  block the access to reference data of which<br>
> instance was  deleted.<br>
> _______________________________________________<br>
> phobos mailing  list<br>
> <a href="mailto:phobos@puremagic.com">phobos@puremagic.com</a><br>
> <a href="http://lists.puremagic.com/mailman/listinfo/phobos" target="_blank">http://lists.puremagic.com/mailman/listinfo/phobos</a><br>
><br>
<br>
<br>
<br>
_______________________________________________<br>
phobos mailing list<br>
<a href="mailto:phobos@puremagic.com">phobos@puremagic.com</a><br>
<a href="http://lists.puremagic.com/mailman/listinfo/phobos" target="_blank">http://lists.puremagic.com/mailman/listinfo/phobos</a><br>
</div></div></blockquote></div><br>