active questions tagged closures - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T00:28:10Zhttp://stackoverflow.com/feeds/tag/closureshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/212401/javascript-how-do-i-learn-about-closures-usage2JavaScript - How do I learn about "closures" usage?robertmyers2008-10-17T14:33:11Z2009-12-10T21:40:21Z
<p>From Wikipedia, the free encyclopedia: <strong>Closure (computer science)</strong></p>
<blockquote>
<p>In computer science, a closure is a
function that is evaluated in an
environment containing one or more
bound variables. When called, the
function can access these variables.
The explicit use of closures is
associated with functional programming
and with languages such as ML and
Lisp. Constructs such as objects in
other languages can also be modeled
with closures.</p>
</blockquote>
<p>To use this inside of JavaScript, can someone point me to an example of how this applies?</p>
http://stackoverflow.com/questions/1856902/whats-the-name-of-the-problem-that-relates-to-optimizing-closures-on-a-stack-bas3What's the name of the problem that relates to optimizing closures on a stack-based system?Matt Ball2009-12-06T22:43:52Z2009-12-06T22:55:49Z
<p>I remember hearing about a general optimization problem that relates to function closures, stating that in general it's difficult to optimize the creation of a closure using only stack-based memory management. Do any of you remember the name of this optimization problem, possibly with an example or link to relevant page? </p>
http://stackoverflow.com/questions/1831955/powershell-an-elegant-way-to-create-closures3PowerShell: an elegant way to create closuresTN2009-12-02T10:17:47Z2009-12-03T04:39:35Z
<p><a href="http://stackoverflow.com/users/153982/keith-hill">Keith Hill</a> explained me that <a href="http://stackoverflow.com/questions/1827561">blocks in PowerShell are not closures</a> and that to create closures from blocks I have to call method <a href="http://msdn.microsoft.com/en-us/library/system.management.automation.scriptblock.getnewclosure%28VS.85%29.aspx" rel="nofollow">.GetNewClosure()</a>.</p>
<p>Is there any elegant way to create closures from blocks? (e.g. create a wrapping function, an alias?, ...)</p>
<p>Example:</p>
<pre><code>{ block }
${ closure } # ???
</code></pre>
http://stackoverflow.com/questions/256625/when-to-use-closure9When to use closure?shahkalpesh2008-11-02T07:27:37Z2009-12-03T01:52:54Z
<p>I have seen samples of closure from - <a href="http://stackoverflow.com/questions/36636/what-is-a-closure">http://stackoverflow.com/questions/36636/what-is-a-closure</a></p>
<p>Can anyone provide simple example of when to use closure?<br></p>
<p><b>Specifically, scenarios in which closure makes sense?</b><Br></p>
<p>Lets assume that the language doesn't have closure support, how would one still achieve similar thing?</p>
<p>Not to offend anyone, please post code samples in a language like c#, python, javascript, ruby etc. <br>I am sorry, I do not understand functional languages yet.</p>
http://stackoverflow.com/questions/230588/problem-sorting-lists-using-delegates4Problem sorting lists using delegatesMaudite2008-10-23T17:17:55Z2009-12-02T15:05:09Z
<p>I am trying to sort a list using delegates but I am getting a signature match error. The compiler says I cannot convert from an 'anonymous method' </p>
<pre><code>List<MyType> myList = GetMyList();
myList.Sort( delegate (MyType t1, MyType t2) { return (t1.ID < t2.ID); } );
</code></pre>
<p>What am I missing?</p>
<p>Here are some references I found and they do it the same way.</p>
<p><a href="http://www.developerfusion.com/code/5513/sorting-and-searching-using-c-lists/" rel="nofollow">Developer Fusion Reference</a> </p>
<p><a href="http://blogs.msdn.com/devdev/archive/2006/06/30/652802.aspx" rel="nofollow">Microsoft Reference</a></p>
http://stackoverflow.com/questions/1825424/groovy-closures-or-methods3Groovy : Closures or Methodsmattmorten2009-12-01T10:55:11Z2009-12-01T16:33:28Z
<p>Hi,</p>
<p>I've got into the habbit of using Closures everywhere I can in place of regular methods, even when I don't need access to free variables. So, I will use this:</p>
<p><code>def addNumbers = { left, right -> left + right }</code></p>
<p>.. instead of this:</p>
<p><code>def addNumbers (left,right) { left + right }</code></p>
<p>Is this bad practice? I far prefer the extra power I get when using closures over methods, and I far prefer the syntax.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1801957/what-exactly-does-closure-refer-to-in-javascript4What exactly does "closure" refer to in JavaScript?Andreas Grech2009-11-26T06:52:57Z2009-11-30T12:27:18Z
<p>I understand what closures are, but I am having some trouble grokking exactly what the term <code>closure</code> refers to. I have seen the term used in many websites, but rarely do they agree on the actual definition of it.</p>
<ul>
<li>Is it the variables that are kept on the stack frame?</li>
<li>Is it the function that is being returned?</li>
<li>Is it the scope of the outer function?</li>
<li>Is it the scope of the inner (returned) function?</li>
<li>Is it maybe the <strong>concept</strong> of keeping the variables on the stack-frame after returning the function?</li>
</ul>
<p>Can someone tell me exactly to what <code>closure</code> refers to?</p>
http://stackoverflow.com/questions/1811764/closures-in-ruby2Closures in Ruby burlsm2009-11-28T06:18:55Z2009-11-28T12:07:33Z
<p>hi</p>
<p>i'm having a little trouble with closures and i'd like to know what
the equivalent code for the canonical make-adder procedure would be in
ruby,</p>
<p>in scheme it would be like</p>
<pre><code>(define (make-adder n)
(lambda (x) (+ x n))
</code></pre>
<p>thanks in advance </p>
http://stackoverflow.com/questions/1799196/closures-in-java-syntax-differences-between-the-three-major-proposals8Closures in Java - syntax differences between the three major proposals?knorv2009-11-25T18:57:19Z2009-11-27T23:27:38Z
<p>Three major proposals for adding <a href="http://en.wikipedia.org/wiki/Closure_(computer_science)" rel="nofollow">closures</a> to the Java language has been presented:</p>
<ul>
<li><a href="http://www.javac.info/closures-v05.html" rel="nofollow">BGGA (Bracha Gafter Gosling Ahé)</a> also known as "full closures", by Gilad Bracha, Neal Gafter, James Gosling and Peter von der Ahé</li>
<li><a href="http://docs.google.com/Doc.aspx?id=k73_1ggr36h" rel="nofollow">CICE (Concise Instance Creation Expressions)</a> also known as "simplified inner classes", by Bob Lee, Doug Lea and Josh Bloch</li>
<li><a href="http://docs.google.com/Doc?id=ddhp95vd_6hg3qhc" rel="nofollow">FCM (First Class Methods)</a>, by Stephen Colebourne and Stefan Schulz</li>
</ul>
<p>My question:</p>
<ul>
<li>What are the differences between the three proposals (BGGA, CICE and FCM) in terms of syntax?</li>
</ul>
http://stackoverflow.com/questions/13857/can-you-explain-closures-as-they-relate-to-python11Can you explain closures (as they relate to Python)?knowncitizen2008-08-17T19:14:30Z2009-11-25T19:55:49Z
<p>I've been reading a lot about closures and I think I understand them, but without clouding the picture for myself and others, I was wondering if anyone can explain closures as succinctly and clearly as possible to me and others? I'm looking for a simple explanation that might help me wrap my head around why I should be using them in certain instances.</p>
http://stackoverflow.com/questions/1773221/closures-mean-fully-type-safe-criteria0closures mean fully type-safe criteria?DragonFax2009-11-20T21:02:47Z2009-11-21T05:36:07Z
<p>combining closures (FCM) and generics, would it be possible to have fully type-safe criteria.</p>
<pre><code>// The following works without a cast as Foo.id is a 'long' field.
List<Long> ids = session.createCriteria(Foo.class)
.setProjection(Foo#id)
.list();
// The following is a compilation error, as Foo.bar is defined as an int, and not a string
session.createCriteria(Foo.class)
.addRestriction(Restrictions.eq(Foo#bar,"blah"))
.list();
</code></pre>
<p>I've read the JPA 2.0 spec for type-safe criteria. But its still somewhat lacking.</p>
<p>Besides, I'm just using criteria here as an example of improving the type-safety of code in general. I used the static typing of java heavily to let me code faster. But as a result I get bitten now and then by the parts of my code that ignore typing. For example HQL queries.</p>
http://stackoverflow.com/questions/1768578/javascript-why-do-i-need-to-use-a-wrap-function-for-event-handlers0(javascript) why do i need to use a wrap function for event handlers?hatorade2009-11-20T05:54:06Z2009-11-20T06:52:32Z
<p>I'm trying to understand why in the following code I need Dragger.prototype.wrap and why I can't just use the event handling methods directly: </p>
<pre><code>function Dragger(id) {
this.isMouseDown = false;
this.element = document.getElementById(id);
this.element.onmousedown = this.wrap(this, "mouseDown");
}
Dragger.prototype.wrap = function(obj, method) {
return function(event) {
obj[method](event);
}
}
Dragger.prototype.mouseDown = function(event) {
this.oldMoveHandler = document.body.onmousemove;
document.onmousemove = this.wrap(this, "mouseMove");
this.oldUpHandler = document.body.onmousemove;
document.onmouseup = this.wrap(this, "mouseUp");
this.oldX = event.clientX;
this.oldY = event.clientY;
this.isMouseDown = true;
}
Dragger.prototype.mouseMove = function(event) {
if (!this.isMouseDown) {
return;
}
this.element.style.left = (this.element.offsetLeft
+ (event.clientX - this.oldX)) + "px";
this.element.style.top = (this.element.offsetTop
+ (event.clientY - this.oldY)) + "px";
this.oldX = event.clientX;
this.oldY = event.clientY;
}
Dragger.prototype.mouseUp = function(event) {
this.isMouseDown = false;
document.onmousemove = this.oldMoveHandler;
document.onmouseup = this.oldUpHandler;
}
</code></pre>
<p>I'm told it's because <code>this</code> changes without it, but I don't understand why <code>this</code> changes, why the wrap function prevents it from changing, and what <code>this</code> would change to without the wrap function.</p>
http://stackoverflow.com/questions/1767699/how-to-pass-external-variables-to-a-private-javascript-outer-closure-function0How to pass external variables to a private javascript outer closure function?kevzettler2009-11-20T01:04:56Z2009-11-20T02:25:48Z
<p>I may have made some poor design choices on this one. I have several objects being instanced like this.</p>
<pre><code>core.modules.trial = function(sandbox){
return{
alert_private : function(){
alert(omgpi);
}
};
};
</code></pre>
<p>I would like to do this:</p>
<pre><code> core.modules.trial[omgpi] = "external private var";
var trial = core.modules.trial();
trial.alert_private(); //would hopefully output "external private var"
</code></pre>
<p>I am trying to assign the <strong>omgpi</strong> variable to the private scope of the outer function. Normally you would do var omgpi within the outer function before returning anything. But I am trying to do this from an external script when this function is called</p>
http://stackoverflow.com/questions/233579/closures-in-java-79Closures in Java 7Roger2008-10-24T13:44:24Z2009-11-19T21:00:57Z
<p>I have heard that closures could be introduced in the next Java standard that is scheduled to be released somewhere around next summer. </p>
<p>What would this syntax look like?</p>
<p>I read somewhere that introducing closures in java is a bigger change than generic was in java 5. Is this true? pros and cons?</p>
<p>(By now we definitely know that closures not will be included in the next Java release)</p>
<p>OR </p>
<p><strong>edit: <a href="http://puredanger.com/tech/2009/11/18/closures-after-all/" rel="nofollow">http://puredanger.com/tech/2009/11/18/closures-after-all/</a> :D</strong></p>
http://stackoverflow.com/questions/1750970/is-nested-xmlhttprequests-with-multiple-closures-a-good-idea1Is nested XMLHttpRequests with multiple closures a good idea?Bribles2009-11-17T18:52:29Z2009-11-17T19:59:18Z
<p>I have a Greasemonkey script which operates on a search results page at a video site. The function of the script is to take a javascript link that opens a new window with a flash player, jump through some redirection hoops, and insert a regular link to the desired FLV file.</p>
<p>I have changed the script to do silly but structurally equivalent things to en.wikipedia.org. My question is whether the 3 nested closures and the nested xmlhttprequests is the best way to go about this.</p>
<p><hr></p>
<pre><code>// ==UserScript==
// @name wiki mod example
// @namespace http://
// @description example script
// @include *wikipedia.org*
// ==/UserScript==
var candidates = document.getElementsByTagName("a");
for (var cand = null, i = 0; (cand = candidates[i]); i++) {
if (cand.href.match(/\/wiki\/W/)) { // for all articles starting with 'W'
var progress = document.createElement('span');
progress.appendChild(document.createTextNode(" Start"));
cand.parentNode.insertBefore(progress, cand.nextSibling);
progress.addEventListener("click",
function(link1) { return function() { // link1 is cand.href
this.innerHTML = " finding...";
GM_xmlhttpRequest({method:"GET",url:link1,
onload:function(p) { return function(responseDetails) {
// p is is the current progress element
// the first linked article starting with 'S' is *special*
var link2 = responseDetails.responseText.match(/\/wiki\/S[^"]+/);
if(!link2) { p.innerHTML = "failed in request 1"; return;}
GM_xmlhttpRequest({method:"GET",url:"http://en.wikipedia.org"+link2[0],
onload:function(p2) { return function(responseDetails) {
// p2 is p, ie. progress
// link3 would contain the URL to the FLV in the real script
var link3 = responseDetails.responseHeaders.match(/Content-Length.+/);
if(!link3) { p2.innerHTML = "failed in request 2"; return;}
var elmNewContent = document.createElement('p');
elmNewContent.appendChild(document.createTextNode(link3));
p2.parentNode.insertBefore(elmNewContent, p2.nextSibling);
p2.innerHTML = " <em>Done</em>";
}}(p) // 3rd closure
}); // end of second xmlhttprequest
}}(this) // 2nd closure
}); // end of first xmlhttprequest
}}(cand.href), true); // 1st closure and end of addeventlistener
}
}
</code></pre>
http://stackoverflow.com/questions/1747726/howwhere-are-closed-over-variables-stored4How|Where are closed-over variables stored?Henk Holterman2009-11-17T09:53:03Z2009-11-17T13:13:04Z
<p>This is a question based on the article <a href="http://blogs.msdn.com/ericlippert/archive/2009/11/12/closing-over-the-loop-variable-considered-harmful.aspx" rel="nofollow">"Closing over the loop variable considered harmful"</a> by Eric Lippert.<br>
It is a good read, Eric explains why after this piece of code all funcs will return the <strong>last</strong> value in v: </p>
<pre><code> var funcs = new List<Func<int>>();
foreach (var v in values)
{
funcs.Add(() => v);
}
</code></pre>
<p>And the correct version looks like:</p>
<pre><code> foreach (var v in values)
{
int v2 = v;
funcs.Add(() => v2);
}
</code></pre>
<p>Now my question is how and where are those captured 'v2' variables stored. In my understanding of the stack, all those v2 variables would occupy the same piece of memory. </p>
<p>My first thought was boxing, each func member keeping a reference to a boxed v2. But that would not explain the first case. </p>
http://stackoverflow.com/questions/1741204/scope-with-a-self-invoking-function-in-javascript2Scope with a self-invoking function in JavascriptAndreas Grech2009-11-16T10:03:40Z2009-11-16T11:02:20Z
<p>Take below code iterates over 6 input buttons and attaches an <code>onclick</code> event to every button that alerts the index number of the respective iteration:</p>
<pre><code>for (var i = 1; i < 6; ++i) {
var but = document.getElementById('b_' + i);
(function (el) {
var num = i;
but.onclick = function () {
alert(num);
};
})(but);
}
</code></pre>
<p>As you can see, in each iteration there is a self-invoking function that creates a scope to store the iteration index in that scope.</p>
<p>I have always used this type of pattern to attach an event that is dependant on a variable that is changed during iterations.</p>
<p><hr></p>
<p>Can anyone explain to me exactly why the above works, and how the <code>num</code> variable is captured in the scope?</p>
<p>Also, is the self-invoking function used above called a <code>closure</code> ?</p>
http://stackoverflow.com/questions/1700514/how-do-you-explain-closure-to-a-5-year-old2How do you explain closure to a 5 year old?Sandbox2009-11-09T11:43:59Z2009-11-09T12:24:27Z
<p>I am currently looking at lambda expression and the word closure keeps coming. Can someone explain it to me in real simple language.</p>
http://stackoverflow.com/questions/1676362/javascript-variable-binding-and-loop1JavaScript variable binding and loop.alex2k82009-11-04T20:20:46Z2009-11-04T23:14:56Z
<p>Consider such loop:</p>
<pre><code>for(var it = 0; it < 2; it++)
{
setTimeout(function() {
alert(it);
}, 1);
}
</code></pre>
<p>The output is:</p>
<pre><code>=> 2
=> 2
</code></pre>
<p>I would like it to be: 0, 1. I see two ways to fix it:</p>
<p>Solution # 1.</p>
<p>This one based on the fact that we can pass data to setTimeout.</p>
<pre><code>for(var it = 0; it < 2; it++)
{
setTimeout(function(data) {
alert(data);
}, 1, it);
}
</code></pre>
<p>Solution # 2.</p>
<pre><code>function foo(data)
{
setTimeout(function() {
alert(data);
}, 1);
}
for(var it = 0; it < 2; it++)
{
foo(it);
}
</code></pre>
<p>Are there any other alternatives?</p>
http://stackoverflow.com/questions/616634/using-anonymous-delegates-with-net-threadpool-queueuserworkitem4Using Anonymous Delegates with .NET ThreadPool.QueueUserWorkItemHoward Hoffman2009-03-05T21:09:36Z2009-11-04T11:41:55Z
<p>I was going to post a question, but figured it out ahead of time and decided to post the question and the answer - or at least my observations.</p>
<p>When using an anonymous delegate as the WaitCallback, where ThreadPool.QueueUserWorkItem is called in a foreach loop, it appears that the same one foreach-value is passed into each thread.</p>
<pre><code>List< Thing > things = MyDb.GetTheThings();
foreach( Thing t in Things)
{
localLogger.DebugFormat( "About to queue thing [{0}].", t.Id );
ThreadPool.QueueUserWorkItem(
delegate()
{
try
{
WorkWithOneThing( t );
}
finally
{
Cleanup();
localLogger.DebugFormat("Thing [{0}] has been queued and run by the delegate.", t.Id );
}
}
}
</code></pre>
<p>For a collection of 16 Thing instances in Things I observed that each 'Thing' passed to WorkWithOneThing corresponded to the last item in the 'things' list.</p>
<p>I suspect this is because the delegate is accessing the 't' outer variable. Note that I also experimented with passing the Thing as a parameter to the anonymous delegate, but the behavior remained incorrect.</p>
<p>When I re-factored the code to use a named WaitCallback method and passed the Thing 't' to the method, viola ... the i'th instance of Things was correctly passed into WorkWithOneThing.</p>
<p>A lesson in parallelism I guess. I also imagine that the Parallel.For family addresses this, but that library was not an option for us at this point.</p>
<p>Hope this saves someone else some time.</p>
<p>Howard Hoffman</p>
http://stackoverflow.com/questions/1671185/closure-problem-passing-current-value-of-a-variable0Closure problem? - passing current value of a variablemartin2009-11-04T01:18:34Z2009-11-04T03:27:26Z
<p>I'm trying to pass the current value of a variable when an a dynamically generated navigation 'node' is clicked. This needs to just be an integer, but it always results in the last node's value.. have tried some different methods to pass the value, a custom event listener, a setter, but I suspect it's a closure problem.. help would be appreciated ;-)</p>
<pre><code>function callGrid():void {
for (var i:Number = 0; i < my_total; i++) {
var gridnode_url = my_grid[i].@gridnode;
var news_category= my_grid[i].@category;
var newstitle = my_grid[i].@newstitle;
var news_content = my_grid[i]..news_content;
var news_image = my_grid[i]..news_image;
var gridnode_loader = new Loader();
container_mc.addChild(gridnode_loader);
container_mc.mouseChildren = false;
gridnode_loader.load(new URLRequest(gridnode_url));
gridnode_loader.contentLoaderInfo.addEventListener(Event.COMPLETE, gridLoaded);
gridnode_loader.name = i;
text_container_mc = new MovieClip();
text_container_mc.x = 0;
text_container_mc.mouseEnabled = false;
var textY = text_container_mc.y = (my_gridnode_height+18)*y_counter;
addChild(text_container_mc);
var tf:TextSplash=new TextSplash(newstitle,10,0,4 );
container_mc.addChild(tf);
tf.mouseEnabled = false;
tf.height = my_gridnode_height;
text_container_mc.addChild(tf);
var text_container_mc_tween = new Tween(text_container_mc, "alpha", Strong.easeIn, 0,1,0.1, true);
gridnode_loader.x = (my_gridnode_width+5) * x_counter;
gridnode_loader.y = (my_gridnode_height+15) * y_counter;
if (x_counter+1 < columns) {
x_counter++;
} else {
x_counter = 0;
y_counter++;
}
}
}
function gridLoaded(e:Event):void {
var i:uint;
var my_gridnode:Loader = Loader(e.target.loader);
container_mc.addChild(my_gridnode);
_xmlnewstarget = my_gridnode.name;
//||||||||||||||||||||||||||||||||||||||||
//when a particular grid node is clicked I need to send the current _xmlnewstarget value to the LoadNewsContent function...
//||||||||||||| ||||||||||||||||||||||||
my_tweens[Number(my_gridnode.name)]=new Tween(my_gridnode, "alpha", Strong.easeIn, 0,1,0.1, true);
my_gridnode.contentLoaderInfo.removeEventListener(Event.COMPLETE, gridLoaded);
my_gridnode.addEventListener(MouseEvent.CLICK, loadNewsContent);
}
function loadNewsContent(e:MouseEvent):void {
createNewsContainer();
getXMLNewsTarget();
news_category = my_grid[_xmlnewstarget].@category;
var tfnews_category:TextSplash=new TextSplash(news_category,20,16,32,false,false,0xffffff );
tfnews_category.mouseEnabled = false;
newstitle = my_grid[_xmlnewstarget].@newstitle;
var tftitle:TextSplash=new TextSplash(newstitle,20,70,24,false,false,0x333333 );
news_container_mc.addChild(tftitle);
tftitle.mouseEnabled = false;
news_content = my_grid[_xmlnewstarget]..news_content;
var tfnews_content:TextSplash=new TextSplash(news_content,20,110,20,true,true,0x333333,330);
news_container_mc.addChild(tfnews_content);
tfnews_content.mouseEnabled = false;
news_image = my_grid[_xmlnewstarget].@news_image;
loadNewsImage();
addChild(tfnews_category);
addChild(tftitle);
addChild(tfnews_content);
var news_container_mc_tween = new Tween(news_container_mc, "alpha", Strong.easeIn, 0,1,0.3, true);
news_container_mc_tween.addEventListener(Event.INIT, newsContentLoaded);
}
</code></pre>
http://stackoverflow.com/questions/1660483/problem-with-delegates-in-c6Problem with delegates in C#malay2009-11-02T10:30:49Z2009-11-02T11:35:57Z
<p>In the following program, DummyMethod always print 5. But if we use the commented code instead, we get different values (i.e. 1, 2, 3, 4). Can anybody please explain why this is happenning?</p>
<pre><code> delegate int Methodx(object obj);
static int DummyMethod(int i)
{
Console.WriteLine("In DummyMethod method i = " + i);
return i + 10;
}
static void Main(string[] args)
{
List<Methodx> methods = new List<Methodx>();
for (int i = 0; i < 5; ++i)
{
methods.Add(delegate(object obj) { return DummyMethod(i); });
}
//methods.Add(delegate(object obj) { return DummyMethod(1); });
//methods.Add(delegate(object obj) { return DummyMethod(2); });
//methods.Add(delegate(object obj) { return DummyMethod(3); });
//methods.Add(delegate(object obj) { return DummyMethod(4); });
foreach (var method in methods)
{
int c = method(null);
Console.WriteLine("In main method c = " + c);
}
}
</code></pre>
<p>Also if the following code is used, I get the desired result.</p>
<pre><code> for (int i = 0; i < 5; ++i)
{
int j = i;
methods.Add(delegate(object obj) { return DummyMethod(j); });
}
</code></pre>
http://stackoverflow.com/questions/1658587/how-to-get-an-anonymous-function-to-keep-the-scoping-it-had-originally-when-calle0how to get an anonymous function to keep the scoping it had originally when called in an event handlerJames Black2009-11-01T22:24:11Z2009-11-01T23:30:45Z
<p>I have a setup where I get some information, in an ajax call, then I immediately use some of that information for another call, and then I populate some fields.</p>
<p>The problem is that I am not certain how to create the anonymous function so that it can call <code>this.plantName</code>.</p>
<p>Right now the value of <code>this.plantName</code> is <code>undefined</code>.</p>
<p>I know that there are missing close braces, but I am not going to try to line them up as that will cause confusion, so <strong>please ignore the missing close braces</strong>.</p>
<pre><code>TabLinks.prototype.plantName = '';
TabLinks.prototype.init = function() {
this.updateTab('PlantDropDown', 'retrievePlants', 'retrieveAllPlants', 'tab3', function() { return this.plantName; });
};
function TabLinks() {
this.updateTab = function(entityname, wsbyid, webservicename, parentContainer, defaultValue) {
$("#" + parentContainer + "link").bind('click', function() {
$.ajax({
type: "POST",
...
success: function(result) {
myData = JSON.parse(result.d);
$.ajax({
type: "POST",
...
success: function(result2) {
...
myelem.value = JHEUtilities.testIsValidObject(defaultValue) ?
defaultValue() :
'';
</code></pre>
<p><strong>Update:</strong>
Here is the solution that worked, I didn't realize the two returns of functions:</p>
<pre><code>this.updateTab('PlantDropDown', 'retrievePlants', 'retrieveAllPlants', 'tab3',
function() {
var app = this;
return function() {
return function() {
return app.plantName;
}
}()
}
);
</code></pre>
<p>So I had to call it thusly:
<code>defaultValue()();</code></p>
http://stackoverflow.com/questions/1656648/is-it-possible-to-call-a-function-defined-inside-a-closure1Is it possible to call a function defined inside a closure?rajakvk2009-11-01T08:12:23Z2009-11-01T11:38:31Z
<p>In the following code, I can call baz. Also somewhere else I read "JavaScript has function-level scope". I know, Im confusing myself somewhere. Can somebody make me understand please?</p>
<pre><code>/* An anonymous function used as a closure. */
var baz;
(function() {
var foo = 10;
var bar = 2;
baz = function() {
return foo * bar;
};
})();
baz(); // baz can access foo and bar, even though it is executed outside of the
// anonymous function
</code></pre>
<p>.</p>
http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function3How do I write a generic memoize function?Jon Ericson2008-09-24T20:48:41Z2009-10-29T11:56:22Z
<p>I'm writing a function to find <a href="http://projecteuler.net/index.php?section=problems&id=12" rel="nofollow">triangle numbers</a> and the natural way to write it is recursively:</p>
<pre><code>function triangle (x)
if x == 0 then return 0 end
return x+triangle(x-1)
end
</code></pre>
<p>But attempting to calculate the first 100,000 triangle numbers fails with a stack overflow after a while. This is an ideal function to <a href="http://perl.plover.com/Memoize/" rel="nofollow">memoize</a>, but I want a solution that will memoize any function I pass to it.</p>
http://stackoverflow.com/questions/1633562/calling-f-functions-from-c-and-getting-null-reference-exceptions1calling F# functions from C# and getting null reference exceptionsdan2009-10-27T20:48:37Z2009-10-27T21:31:07Z
<p>I'm using Visual Studio 2008 with the October 2009 F# CTP installed.</p>
<p>I'm trying to call some F# code from my C# program. Most types of F# functions seem to work, but some are not getting initialized in F# and are throwing NullReferenceExceptions. The ones doing this are closures and partially applied functions, i.e. things that appear in C# as FastFunc<> types.</p>
<p>Is there something I'm doing wrong or forgetting, or is this possibly a bug with F# or .NET?</p>
<p><em>the code below is to demo the problem. I'm not actually trying to use this code in a real application.</em>
<em>also, within F#, everything works correctly. this is an F#-to-C# problem</em></p>
<p>F#: </p>
<pre><code>namespace FS
module FunctionTypes =
//these all work in c# as expected
let Value = "value"
let OneParam (str:string) = str
let TwoParam (str:string) (str2:string) = str + " " + str2
let Lambda =
fun () -> "lambda"
//these functions are null references in C#
// they do work as expected in F# interactive mode
let PartialApplication = TwoParam "what's up"
let Closure =
let o = new System.Object()
fun (i:int) -> o.ToString() + i.ToString()
let ClosureWrapper (i:int) =
Closure i
</code></pre>
<p>C# (references F# project and FSharp.Core)</p>
<pre><code> //these work as expected:
var oneParam = FS.FunctionTypes.OneParam("hey");
var twoParam = FS.FunctionTypes.TwoParam("yeah", "you");
var lambdaFunction = FS.FunctionTypes.Lambda();
var value = FS.FunctionTypes.Value;
// in the May09 CTP, Value returned null,
// so it must have been fixed in Oct09 CTP
//these do not work--each throws a NullReferenceException.
var partial = FS.FunctionTypes.PartialApplication.Invoke("hello");
var closure = FS.FunctionTypes.Closure.Invoke(1);
var closureWrapper = FS.FunctionTypes.ClosureWrapper(1);
// FS.FunctionTypes.Closure itself is null,
// so is FS.FunctionTypes.PartialAppliction.
// FS.FunctionTypes.ClosureWrapper is a regular function,
// but it calls Closure, which is null
</code></pre>
http://stackoverflow.com/questions/1632739/is-a-python-closure-a-good-replacement-for-all2Is a Python closure a good replacement for `__all__`?joeforker2009-10-27T18:21:19Z2009-10-27T20:47:43Z
<p>Is it a good idea to use a closure instead of <code>__all__</code> to limit the names exposed by a Python module? This would prevent programmers from accidentally using the wrong name for a module (<code>import urllib; urllib.os.getlogin()</code>) as well as avoiding "<code>from x import *</code>" namespace pollution as <code>__all__</code>.</p>
<pre><code>def _init_module():
global foo
import bar
def foo():
return bar.baz.operation()
class Quux(bar.baz.Splort): pass
_init_module(); del _init_module
</code></pre>
<p>vs. the same module using <code>__all__</code>:</p>
<pre><code>__all__ = ['foo']
import bar
def foo():
return bar.baz.operation()
class Quux(bar.baz.Splort): pass
</code></pre>
<p>Functions could just adopt this style to avoid polluting the module namespace:</p>
<pre><code>def foo():
import bar
bar.baz.operation()
</code></pre>
<p>This might be helpful for a large package that wants to help users distinguish its API from the package's use of its and other modules' API during interactive introspection. On the other hand, maybe IPython should simply distinguish names in <code>__all__</code> during tab completion, and more users should use an IDE that allows them to jump between files to see the definition of each name.</p>
http://stackoverflow.com/questions/1615950/java-mechanisms-at-use-in-lambdaj-closures3Java mechanisms at use in lambdaj closurespyo2009-10-23T21:19:16Z2009-10-24T15:51:31Z
<p>Lamdbaj allows the definition of closures in the Java language, various examples can be found
<a href="http://code.google.com/p/lambdaj/wiki/Closures" rel="nofollow">here</a></p>
<p>My question is regarding the underlying Java mechanisms at use, for instance, to define the <code>println</code> closure, the following code is used:</p>
<pre><code>Closure println = closure();
{ of(System.out).println(var(String.class)); }
</code></pre>
<p>This closure can be subsequently executed via:</p>
<pre><code>println.apply("foobar");
</code></pre>
<p>I am curious as to what mechanisms in Java would allow the call to <code>of(...).println(...)</code> to become associated with the <code>println</code> instance itself. </p>
<p>Naturally, the lambdaj source code is available to read but I was hoping for a slightly higher level explanation if anyone has one. My reflection skills go as far as a bit of introspection and executing methods dynamically.</p>
http://stackoverflow.com/questions/1615859/issues-with-closure-and-a-method-defined-elsewhere0Issues with closure and a method defined elsewhere.Allan2009-10-23T20:58:48Z2009-10-23T21:43:25Z
<p>I am pretty new at Javascript so I may not be using the exact terminology.</p>
<p>Suppose that I define an object literal as such.</p>
<pre><code>var myObj = {
someMethod:function() {
//can we have access to "someValue" via closure?
alert(someValue);
}
}
</code></pre>
<p>And then we assign the function to another object like this.</p>
<pre><code>var myOtherObject = {
someOtherMethod:function() {
var someValue = 'Hello World';
//If we did this, then the function would have access to "someValue"
this.aMethod = function() {
alert(someValue);
}
//This does not work for "someMethod" to have access to "someValue"
//this.someMethod = myObj.someMethod;
//This does work, however I would like to avoid the use of eval()
this.someMethod = eval("("+myObj.someMethod.toString()+")");
}
}
</code></pre>
<p>Is it possible to have <i>myOtherObject.someMethod()</i> work without using <i>eval()</i> as above?</p>
http://stackoverflow.com/questions/1612094/are-these-examples-c-closures9Are these examples C# closures?tuinstoel2009-10-23T08:31:09Z2009-10-23T10:00:15Z
<p>I still don't quite understand what a <strong>closure</strong> is so I posted these two examples and I want to know whether these examples are both closures or not?</p>
<p><strong>Example A:</strong></p>
<pre><code>List<DirectoryInfo> subFolders = new List<DirectoryInfo>();
Action<string> FilterSubFoldersStartA =
s => subFolders.
AddRange((new DirectoryInfo(s)).GetDirectories().
Where(d => d.Name.StartsWith("A")));
FilterSubFoldersStartA(@"c:\tempa");
FilterSubFoldersStartA(@"c:\tempb");
</code></pre>
<p><strong>Example B:</strong></p>
<pre><code>List<DirectoryInfo> subFolders = new List<DirectoryInfo>();
string filter = "A";
Action<string> FilterSubFoldersStartGen =
s => subFolders.
AddRange((new DirectoryInfo(s)).GetDirectories().
Where(d => d.Name.StartsWith(filter)));
FilterSubFoldersStartGen(@"c:\tempa");
filter = "B";
FilterSubFoldersStartGen(@"c:\tempb");
</code></pre>