When does a mutable state value freed from heap? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T08:15:35Zhttp://stackoverflow.com/feeds/question/817958http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/817958/when-does-a-mutable-state-value-freed-from-heap0When does a mutable state value freed from heap?Sung Meister2009-05-03T20:44:18Z2009-05-04T00:31:41Z
<p>On F# WikiBook under <a href="http://en.wikibooks.org/wiki/F%5FSharp%5FProgramming/Mutable%5FData" rel="nofollow">Encapsulating Mutable State</a> section, there is a following code snippet.</p>
<pre><code>> let incr =
let counter = ref 0
fun () ->
counter := !counter + 1
!counter;;
val incr : (unit -> int)
> incr();;
val it : int = 1
> incr();;
val it : int = 2
> incr();;
val it : int = 3
</code></pre>
<p>At first, it seemed easy enough to swallow the fact that, mutable <code>counter</code> value increments everytime <code>incr</code> is invoked.</p>
<p>But after thinking about it for awhile, what I couldn't understand were when <code>counter</code> is freed from heap and also how <code>counter</code> still refers to previous value before being incremented. How is <code>counter</code> that lives within <code>incr</code> function scope survive through multiple function calls?</p>
<p>So main questions are:</p>
<ul>
<li>When does <code>counter</code> freed from heap?</li>
<li>Isn't <code>counter</code> a memory leak?</li>
</ul>
http://stackoverflow.com/questions/817958/when-does-a-mutable-state-value-freed-from-heap/817970#8179701Answer by Dave for When does a mutable state value freed from heap?Dave2009-05-03T20:50:40Z2009-05-03T20:50:40Z<p>counter is freed from the heap when incr is no longer reachable. It's not a memory leak because of garbage collection.</p>
http://stackoverflow.com/questions/817958/when-does-a-mutable-state-value-freed-from-heap/818007#8180074Answer by Brian for When does a mutable state value freed from heap?Brian2009-05-03T21:09:21Z2009-05-04T00:25:32Z<p>The distinction between 'lexical scope' (where a name has meaning in the text of a program) and 'lifetime' (runtime duration between when object is created and destroyed) can sometimes be confusing, since often these two are highly correlated. However the technique demonstrated by this example is common in functional languages: you give an implementation detail a small lexical scope (that hides the implementation details from callers), but extend its lifetime by capturing it in a closure (so that its lifetime becomes the lifetime of the enclosing object - in this instance the 'incr' function). This is a common way to do encapsulation in functional programming (contrasted with the usual encapsulation technique of public/private in classes in object-oriented programming).</p>
<p>Now, in this particular example, it looks like 'incr' is a top-level function, which means its value lasts for the lifetime of the program (or interactive session if typing into fsi.exe). You could call this a 'leak', but it depends on intent. If you have some unique id counter you need for the entire lifetime of your entire program, then you are going to have to store that counter varable <em>somewhere</em> that it lasts for the whole program. So either this is 'a leak' or 'a by design feature' depending on how 'incr' will be used (will you need to use that function for the whole rest of the program?). In any case, the key point here is that 'incr' holds memory resources, so if you won't need those resources forever, you should arrange for the closure referenced by 'incr' to become unreachable when it is no longer needed. Commonly this might be by making it local to some other function, e.g.</p>
<pre><code>let MyComplicatedFuncThatNeedsALocalCounter args =
let incr =
// as before
// other code that uses incr
// return some result that does not capture incr
</code></pre>
http://stackoverflow.com/questions/817958/when-does-a-mutable-state-value-freed-from-heap/818025#8180252Answer by SealedSun for When does a mutable state value freed from heap?SealedSun2009-05-03T21:14:35Z2009-05-03T21:14:35Z<p>In this case, <code>incr</code> is a top-level function (implemented as a static field if I'm not mistaken.) It holds a closure which in turn has a reference to that ref cell named <code>counter</code>. As long as this closure exists, the <code>ref</code> cell is kept in memory.</p>
<p>Now this top level binding will indeed never get garbage collected as it is a static readonly field. (in C# terms). If you, however, have closures like that with a <em>limited</em> lifetime (bound locally or in an object), the <code>ref</code> cell will be freed when the closure is garbage collected.</p>