active questions tagged late-binding - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:16:10Z http://stackoverflow.com/feeds/tag/late-binding http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1912902/what-exactly-is-late-static-binding-in-php 3 What exactly is late-static binding in PHP? Sarfraz Ahmed 2009-12-16T07:17:32Z 2009-12-16T23:42:10Z <p>Hello,</p> <p>What exactly is late-static binding in PHP?</p> http://stackoverflow.com/questions/1836237/late-binding-an-object-as-in-vba 1 Late binding an Object as in VBA jJack 2009-12-02T22:16:05Z 2009-12-03T14:48:12Z <p>I am getting the "run-time error 429" in my attempt at late binding to the VBProject object:</p> <pre><code>Dim vbProj As Object Set vbProj = CreateObject("ActiveDocument.VBProject") </code></pre> <p>Is there something fundamental I am failing to understand? </p> <p>For example, how would you write the code in <a href="http://support.microsoft.com/kb/308340" rel="nofollow">article 308340</a> to use late binding?:</p> <pre><code> Sub CheckReference() Dim vbProj As VBProject Set vbProj = ActiveDocument.VBProject For Each chkRef In vbProj.References If chkRef.IsBroken Then Debug.Print chkRef.Name End If Next End Sub </code></pre> http://stackoverflow.com/questions/1816560/is-it-possible-to-overuse-late-static-binding-in-php 3 Is it possible to overuse late static binding in PHP? Ignas R 2009-11-29T19:52:48Z 2009-11-29T20:55:18Z <p>Starting with version 5.3, PHP supports <a href="http://en.wikipedia.org/wiki/Name%5Fbinding#Late%5Fstatic" rel="nofollow">late binding</a> for static methods. While it's an undoubtedly useful feature, there are only several cases where its use is really necessary (e.g. the Active Record pattern). </p> <p>Consider these examples:</p> <p><strong>1. Convenience constructors (<code>::create()</code>)</strong></p> <pre><code>class SimpleObject { public function __construct() { /* ... */ } public static function create() { return new static; // or: return new self; } } </code></pre> <p>If this class may be extended (however, it's not extended by any class in the same package), should late static binding be used just to make extending it easier (without having to rewrite the <code>::create()</code> method, and, more importantly, without having to remember to do that)?</p> <p><em>Note: this idiom is used to work around the impossibility to call methods on just constructed objects: <code>new SimpleObject()-&gt;doStuff()</code> is invalid in PHP.</em> </p> <p><hr></p> <p><strong>2. Class constants</strong></p> <pre><code>class TagMatcher { const TAG_PATTERN = '/\&lt;([a-z\-]+?)\&gt;/i'; private $subject; public function construct($subject) { $this-&gt;subject = $subject; } public function getAllTags() { $pattern = static::TAG_PATTERN; preg_match_all($pattern, $this-&gt;subject); return $pattern[1]; } } </code></pre> <p>The reason to use <code>static::</code> in this example is similar to the previous one. It's used just because this class can be made to match differently formed tags just by extending it and overriding the constant.</p> <p><hr></p> <p>So, to wrap it all up, are these uses (and similar ones) of late static binding are an overkill? Is there any noticeable performance hit? Also, does frequent use of late binding reduce the overall performance boost given by opcode caches?</p> http://stackoverflow.com/questions/1813596/actiont-to-call-a-method-based-on-a-string-value 0 Action<T> to call a method based on a string value joemoe 2009-11-28T19:53:36Z 2009-11-28T20:03:14Z <p>Is there a way to use Action to call a method based on a string value that contains the name of that method?</p> http://stackoverflow.com/questions/403218/does-c-net-support-idispatch-late-binding 2 Does C# .NET support IDispatch late binding? Ian Boyd 2008-12-31T15:33:16Z 2009-11-01T12:29:37Z <p><hr /></p> <h2>The Question</h2> <p>My question is: <strong>Does C# nativly support late-binding IDispatch?</strong></p> <p><hr /></p> <p><em>Pretend</em> i'm trying to automate Office, while being compatible with whatever version the customer has installed. </p> <p>In the .NET world if you developed with Office 2000 installed, every developer, and every customer, from now until the end of time, is required to have Office 2000.</p> <p>In the world before .NET, we used <strong>COM</strong> to talk to Office applications. </p> <p>For example:</p> <p>1) Use the version independant ProgID</p> <pre><code>"Excel.Application" </code></pre> <p>which resolves to:</p> <pre><code>clsid = {00024500-0000-0000-C000-000000000046} </code></pre> <p>and then using COM, we ask for one of these classes to be instantiated into an object:</p> <pre><code>IUnknown unk; CoCreateInstance( clsid, null, CLSCTX_INPROC_SERVER | CLSCTX_LOCAL_SERVER, IUnknown, out unk); </code></pre> <p>And now we're off to the races - able to use Excel from inside my application. Of course, if <em>really</em> you want to use the object, you have to call have some way of calling methods. </p> <p>We <em>could</em> get ahold of the various <strong>interface</strong> declarations, translated into our language. This technique is good because we get </p> <ul> <li>early binding</li> <li>code-insight </li> <li>compile type syntax checking</li> </ul> <p>and some example code might be:</p> <pre><code>Application xl = (IExcelApplication)unk; ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid); Worksheet worksheet = workbook.ActiveSheet; </code></pre> <p><hr /></p> <p>But there is a downside of using interfaces: we have to get ahold of the various interface declarations, transated into our language. And we're stuck using method-based invocations, having to specify all parameters, e.g.:</p> <pre><code>ExcelWorkbook workbook = xl.Workbooks.Add(template, lcid); xl.Worksheets.Add(before, after, count, type, lcid); </code></pre> <p>This has proved, in the real world, to have such downsides that we would willingly give up:</p> <ul> <li>early binding</li> <li>code-insight</li> <li>compile time syntax checking</li> </ul> <p>and instead use <strong>IDispatch</strong> late binding:</p> <pre><code>Variant xl = (IDispatch)unk; Variant newWorksheet = xl.Worksheets.Add(); </code></pre> <p>Because Excel automation was designed for VB Script, a lot of parameters can be ommitted, even when there is no overload without them.</p> <p><strong>Note:</strong> Don't confuse my example of Excel with a reason of why i want to use IDispatch. Not every COM object is Excel. Some COM objects have no support other than through IDispatch.</p> http://stackoverflow.com/questions/1558256/using-late-binding-to-get-a-specific-instance-of-excel-in-c 1 Using late binding to get a specific instance of Excel in C# doiley 2009-10-13T04:54:29Z 2009-10-14T01:22:08Z <p>Hi all,</p> <p>Just after a little help with late binding.</p> <p>I am trying to late bind excel and i don't have any issues doing that. It is only when I have more than one instance of excel open where I run into some problems.</p> <p>I would like to be able to determine what instance of excel to bind to (and the link events etc.). Main reason being I have an application that opens a excel document from a third party tool and the events aren't handled. I want to be able to tap into the particular excel instance that I know is open to catch the events. Only problem is if excel is already open by the user (doesn't matter how).</p> <p>If excel is opened after the bind, obviously, I don't get a problem. It is only when excel is already open. </p> <p>It seems that the binding is done to the first instace that is open.</p> <p>Here is the actual code:</p> <pre><code> Type excelType = Type.GetTypeFromProgID("Excel.Application"); // Throw exception if the type wasn't found if (excelType == null) throw new Exception(error); //Get the Excel.Application Type by creating a new type instance excelApplication = Marshal.GetActiveObject("Excel.Application"); //Throw exception if the object couldn't be created if (excelApplication == null) throw new Exception(error); this.withEvents = withEvents; //Create link between the Word.Applications events and the ApplicationEvents2_WordEvents class if (this.withEvents) { excelEvents = new ExcelApplicationEvents(); //holds the connection point references of the Word.Application object IConnectionPointContainer connectionPointContainer = excelApplication as IConnectionPointContainer; //Find the connection point of the GUID found from Red Gate's .Net Reflector Guid guid = new Guid("00024413-0000-0000-C000-000000000046"); connectionPointContainer.FindConnectionPoint(ref guid, out connectionPoint); //Advise the Word.Application to send events to the event handler connectionPoint.Advise(excelEvents, out sinkCookie); excelEvents.WorkbookBeforeSaveEvent += new EventHandler&lt;WorkbookEventArgs&gt;(ExcelEventsWorkbookBeforeSaveEvent); } </code></pre> <p>Any Ideas?</p> <p>Cheers,</p> <p>Dale.</p> http://stackoverflow.com/questions/1380317/is-there-a-system-reflection-binder-net-that-binds-to-generic-methods 1 Is there a System.Reflection.Binder (.NET) that binds to generic methods? toyvo 2009-09-04T16:36:50Z 2009-09-04T20:45:40Z <p>The following <code>F#</code> code fails because <code>Type.DefaultBinder</code> does not want to bind to the generic <code>Id</code> method. Is there an alternative <code>Binder</code> that would do this?</p> <pre><code>open System open System.Reflection type Foo() = member this.Id&lt;'T&gt;(x: 'T) : 'T = x //' typeof&lt;Foo&gt;.InvokeMember ( "F", BindingFlags.InvokeMethod, Type.DefaultBinder, (new Foo()), [| box "test" |] ) </code></pre> <p>Here is equivalent C#:</p> <pre><code>using System; using System.Reflection; public class Foo { T Id&lt;T&gt;(T x) { return x; } static void Main() { typeof(Foo).InvokeMember ( "F", BindingFlags.InvokeMethod, Type.DefaultBinder, (new Foo()), new object[] {"test"} ); } } </code></pre> http://stackoverflow.com/questions/900227/how-to-use-late-binding-to-invoke-method-with-byref-parameters 0 How to use late binding to invoke method with ByRef parameters Adam 2009-05-22T22:16:44Z 2009-08-24T03:00:02Z <p>I have a COM component that I want to call using late-binding from VB.NET (using the painful Primary Interop Assembly - PIA method)</p> <p>My IDL signature for the COM method looks like:</p> <pre><code>HRESULT Send([in]BSTR bstrRequestData, [out]VARIANT *pvbstrResponseData, [out]VARIANT *pvnExtCompCode, [out,retval]int *pnCompletionCode); </code></pre> <p>So 2 'ByRef' parameters in VB.NET lingo, and a return value.</p> <p>I attempt to invoke this method like so:</p> <pre><code>Dim parameters(2) As Object parameters(0) = "data" parameters(1) = New Object() parameters(2) = New Object() Dim p As New ParameterModifier(3) p(1) = True p(2) = True Dim parameterMods() As ParameterModifier = {p} objReturn = MyObject.GetType().InvokeMember("Send", _ BindingFlags.InvokeMethod, _ Nothing, _ MyObject, _ parameters, _ parameterMods, _ Nothing, _ Nothing) </code></pre> <p>This fails spectactularly with an exception: {"Invalid callee. (Exception from HRESULT: 0x80020010 (DISP_E_BADCALLEE))"}</p> <p>I assume this means I'm doing something wrong in my parameterMods array. Because if I comment out setting any value of the ParameterMods array to 'True' - it works. It of course doesnt update the parameters that are [out] parameters and so it's not working as intended.</p> <p>Is there something else to consider since the method also has a return value? The <a href="http://msdn.microsoft.com/en-us/library/system.reflection.parametermodifier.aspx" rel="nofollow">MSDN example</a> pretty much does exactly what I am doing, with the exception that example did not have a return value. Any help is appreciated.</p> http://stackoverflow.com/questions/1278495/c-implement-late-binding-for-native-code 0 C# Implement Late Binding for Native Code Jonathan.Peppers 2009-08-14T15:22:35Z 2009-08-14T22:42:10Z <p>We are working with an existing native application (most likely written in VB) that loads assemblies and calls methods with "Late Binding." We do NOT have access to its source code.</p> <p>We want to implement this interface in C#, and have the native application call our C# assembly.</p> <p>Is this something that's possible?</p> <p>Is this anything we have to do beyond matching the method names and method signatures to make it work?</p> http://stackoverflow.com/questions/1272061/how-to-find-out-a-com-prog-id 1 How to find out a COM prog id? Marc 2009-08-13T13:44:50Z 2009-08-13T13:54:22Z <p>I'd like to access a COM library via late binding.<br /> How can I find out its progID?</p> <pre><code>Type oClassType = Type.GetTypeFromProgID("THE MISSING PROGID"); </code></pre> http://stackoverflow.com/questions/1222577/how-to-release-late-bound-com-objects 0 How to release late bound COM objects? Marc 2009-08-03T14:11:49Z 2009-08-03T14:16:18Z <p>I guess I do have to release also late bound COM objects.<br /> But how is this done directly?</p> <p>In my situation I use the following code from C# to get the focused point from Google Earth (simplified):</p> <pre><code>Type oClassType = Type.GetTypeFromProgID("GoogleEarth.ApplicationGE"); object oGE = Activator.CreateInstance(oClassType); object oCamera = oGE.GetType().InvokeMember("GetCamera", System.Reflection.BindingFlags.InvokeMethod, null, oGE, new object[] { 0 }); double dFocusLatitude = (double)oCamera.GetType().InvokeMember("FocusPointLatitude", System.Reflection.BindingFlags.GetProperty, null, oCamera, null); double dFocusLongitude = (double)oCamera.GetType().InvokeMember("FocusPointLongitude", System.Reflection.BindingFlags.GetProperty, null, oCamera, null); </code></pre> <p>So how to I release the camera and Google Earth objects in this situation?</p> http://stackoverflow.com/questions/1217683/need-help-defining-an-interface-in-c 3 Need help defining an Interface in C# Angela 2009-08-01T22:49:56Z 2009-08-01T23:06:01Z <p>I have a data driven mapping application where I need to implement custom functions as plugins. The name of the custom method that I need to execute will also be in the mapping data. I know that I can call the method using the invoke command; but, how can I ensure that each method has the appropriate signature?</p> http://stackoverflow.com/questions/1168290/how-to-pass-a-late-bound-parameter 3 How to Pass a Late Bound Parameter ssorrrell 2009-07-22T21:14:07Z 2009-07-23T19:16:00Z <p>In VB6, I'm trying to pass a late bound object to another form.</p> <p>frmMain.vb</p> <pre><code>Dim x Set x = CreateObject("MyOwn.Object") Dim f as frmDialog Set f = New frmDialog f.SetMyOwnObject x </code></pre> <p>frmDialog</p> <pre><code>Dim y Public Sub SetMyOwnObject(ByVal paramX As Variant) Set y = paramX End Sub </code></pre> <p>The contents of y are a string containing the type name of the late bound object, "MyOwn.Object". ByVal and ByRef don't make a difference. Any clues? Having trouble remembering.</p> http://stackoverflow.com/questions/1081842/c-assembly-loading-and-late-binding 2 C# Assembly Loading and Late Binding Subb 2009-07-04T09:06:13Z 2009-07-04T09:44:30Z <p>I'm reading <a href="http://www.apress.com/book/view/1590598849" rel="nofollow">this</a> book on C# and .NET and I'm learning a bunch of cool stuff. I've read the part where the author talks about dynamically loading an assembly and creating an instance of a type in that assembly. </p> <p>In AS3, it's possible to do the same kind of stuff, except for one thing : you can ask the compiler to not compile a set of class, but to check for type safety. Here's an example :</p> <pre><code>//Defined in an external library public class A {...} //In my application, I tell the compiler to type check A, but not compile it var a:A = new A(); a.whatever(); </code></pre> <p>At runtime in my application code, I can dynamically load my external library containing the definition of class A, load those definitions into my application's ApplicationDomain and everything will run fine. No needs of reflection!</p> <p>Is this possible in C#?</p> <p>In other words, can I instruct the C# compiler to typecheck against a bunch of class (let's say, in a library) but exclude them from compilation?</p> http://stackoverflow.com/questions/222370/option-strict-on-and-net-for-vb6-programmers 10 Option Strict On and .NET for VB6 programmers Enrico Campidoglio 2008-10-21T15:51:44Z 2009-06-09T14:22:18Z <p>Hi,</p> <p>I'm preparing a class on Visual Basic 2005 targeting Visual Basic 6 programmers migrating to the .NET platform.<br /><br/> I would like a word of advice about whether to recommend them to always enable <strong>Option Strict</strong> or not.<br /><br/> I've worked exclusively with C-style programming languages, mostly Java and C#, so for me <strong>explicit casting</strong> is something I always expect I have to do, since it's never been an option.<br/>However I recognize the value of working with a language that has built-in support for <strong>late-binding</strong>, because not having to be excessively explicit about types in the code indeed saves time. This is further proved by the popular diffusion of <strong>dynamic typed languages</strong>, even on the .NET platform with the Dynamic Language Runtime. <br><br/> With this in mind, should someone who is approaching .NET for the first time using VB.NET and with a VB6 background be encouraged to get into the mindset of <strong>having to work with compile-time type checking</strong> because that's the "best practice" in the CLR? Or is it "OK" to continue enjoying the benefits of late-binding?</p> http://stackoverflow.com/questions/776331/using-early-binding-on-a-com-object 2 Using early binding on a COM object Laurent 2009-04-22T09:18:14Z 2009-04-22T10:49:47Z <p>Hello,</p> <p>I have this piece of code that works very well and gives me the path the user's start menu:</p> <pre><code> Dim oShell As Object = CreateObject("Shell.Application") MsgBox(oShell.NameSpace(11).Self.Path) </code></pre> <p>This obviously uses late binding. Now say I want to do this in C#, or in VB.NET strict mode, neither of which support this kind of syntax with late binding.</p> <p>Is this possible? How?</p> <p>Thanks for you help!</p> http://stackoverflow.com/questions/634112/cast-sender-object-in-event-handler-using-gettype-name 0 Cast sender object in event handler using GetType().Name tfl 2009-03-11T11:18:03Z 2009-03-11T11:47:23Z <p>I have an event handler for a Textbox as well as for a RichTextBox. The code is identical, but</p> <p>In handler #1 i do:</p> <pre><code>RichTextBox tb = (RichTextBox)sender </code></pre> <p>In handler #2 accordingly:</p> <pre><code>TextBox tb = (TextBox)sender </code></pre> <p>Doing so i can fully manipulate the sending control. What i want to know is how can i cast the sending object to Textbox or RichTextbox according to its type using</p> <pre><code>sender.GetType().Name </code></pre> <p>and then create the control at runtime and work with it. That way i only need one event handler function: less code, less errors, easier to maintain and DRY :-)</p> http://stackoverflow.com/questions/533090/what-is-the-relationship-between-late-binding-and-inversion-of-control 0 What is the relationship between "late binding" and "inversion of control"? Andrey Fedorov 2009-02-10T16:35:44Z 2009-02-10T18:33:18Z <p>In <a href="http://userpage.fu-berlin.de/~ram/pub/pub_jf47ht81Ht/doc_kay_oop_en" rel="nofollow">his definition</a> of OOP, Alan Kay points out he supports "the extreme late-binding of all things". Does his interest in late-binding share the same motivation as people's interest in IoC?</p> <p>In particular, would it be correct to say that both are motivated by the concept "specify as little as possible, and leave implementation details to be filled in later"?</p> http://stackoverflow.com/questions/345178/question-about-createobject-in-vb6-vba 2 Question about CreateObject() in VB6 / VBA Shane 2008-12-05T21:19:43Z 2008-12-09T10:55:56Z <p>I can do this:</p> <pre><code>Dim fso As New FileSystemObject </code></pre> <p>or I can do this:</p> <pre><code>Dim fso As Object Set fso = CreateObject("Scripting.FileSystemObject") </code></pre> <p>How do I know what string to use for CreateObject? For example, how would I know to use the "Scripting." part of "Scripting.FileSystemObject"? Where do you go to look that up?</p> http://stackoverflow.com/questions/335659/how-do-you-call-a-method-from-a-variable-in-asp-classic 0 How do you call a method from a variable in ASP Classic? Cory House 2008-12-02T22:14:05Z 2008-12-06T13:30:58Z <p>For example, how can I run me.test below?</p> <pre><code>myvar = 'test' me.myvar </code></pre> <p>ASP looks for the method "myvar" and doesn't find it. In PHP I could simply say $me->$myvar but ASP's syntax doesn't distinguish between variables and methods. Suggestions?</p> <p>Closely related to this, is there a method_exists function in ASP Classic?</p> <p>Thanks in advance!</p> <p><strong>EDIT:</strong> I'm writing a validation class and would like to call a list of methods via a pipe delimited string. </p> <p>So for example, to validate a name field, I'd call:</p> <pre><code>validate("required|min_length(3)|max_length(100)|alphanumeric") </code></pre> <p>I like the idea of having a single line that shows all the ways a given field is being validated. And each pipe delimited section of the string is the name of a method.</p> <p>If you have suggestions for a better setup, I'm all ears!</p> http://stackoverflow.com/questions/283492/how-to-modify-a-boxed-value-type-inside-a-method 0 How to modify a boxed value type inside a method Ricky AH 2008-11-12T10:15:28Z 2008-11-12T12:17:04Z <p>I'm tring to build a library for simplifing late binding calls in C#, and I'm getting trouble tring with reference parameteres. I have the following method to add a parameter used in a method call</p> <pre><code> public IInvoker AddParameter(ref object value) { //List&lt;object&gt; _parameters = new List&lt;object&gt;(); _parameters.Add(value); //List&lt;bool&gt; _isRef = new List&lt;bool&gt;(); _isRef.Add(true); return this; } </code></pre> <p>And that doesn't work with value types, because they get boxed as an object, thus they are not modified. E.g:</p> <pre><code>int param1 = 2; object paramObj = param1; //MulFiveRef method multiplies the integer passed as a reference parameter by 5: //void MulFiveRef(ref int value) { value *= 5; } fi.Method("MulFiveRef").AddParameter(ref paramObj); </code></pre> <p>That doesn't work. The late binding call is successful, and the inner List which holds the parameteres (_parameters ) does get modified, but not the value outside the call.</p> <p>Does anyone knows a simple way to overcome this limitation? The AddParameter signature cannot be modified, as with late binding calls, you cannot know in advance the Type of the parameters (and either way you insert all the parameters for a call inside an object array prior to making the call)</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/233673/lexical-closures-in-python 15 Lexical closures in Python eliben 2008-10-24T14:08:25Z 2008-10-26T12:48:27Z <p>While I was investigating a problem I had with lexical closures in Javascript code, I came along this problem in Python:</p> <pre><code>flist = [] for i in xrange(3): def func(x): return x * i flist.append(func) for f in flist: print f(2) </code></pre> <p>Note that this example mindfully avoids <code>lambda</code>. It prints "4 4 4", which is surprising. I'd expect "0 2 4". </p> <p>This equivalent Perl code does it right:</p> <pre><code>my @flist = (); foreach my $i (0 .. 2) { push(@flist, sub {$i * $_[0]}); } foreach my $f (@flist) { print $f-&gt;(2), "\n"; } </code></pre> <p>"0 2 4" is printed.</p> <p>Can you please explain the difference ?</p> <p><hr /></p> <p>Update: </p> <p>The problem <strong>is not</strong> with <code>i</code> being global. This displays the same behavior:</p> <pre><code>flist = [] def outer(): for i in xrange(3): def inner(x): return x * i flist.append(inner) outer() #~ print i # commented because it causes an error for f in flist: print f(2) </code></pre> <p>As the commented line shows, <code>i</code> is unknown at that point. Still, it prints "4 4 4".</p> http://stackoverflow.com/questions/139819/why-results-of-map-and-list-comprehension-are-different 5 Why results of map() and list comprehension are different? J.F. Sebastian 2008-09-26T14:19:48Z 2008-10-25T06:28:58Z <p>The following test fails:</p> <pre><code>#!/usr/bin/env python def f(*args): """ &gt;&gt;&gt; t = 1, -1 &gt;&gt;&gt; f(*map(lambda i: lambda: i, t)) [1, -1] &gt;&gt;&gt; f(*(lambda: i for i in t)) # -&gt; [-1, -1] [1, -1] &gt;&gt;&gt; f(*[lambda: i for i in t]) # -&gt; [-1, -1] [1, -1] """ alist = [a() for a in args] print(alist) if __name__ == '__main__': import doctest; doctest.testmod() </code></pre> <p>In other words:</p> <pre><code>&gt;&gt;&gt; t = 1, -1 &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append(lambda: i) ... &gt;&gt;&gt; map(lambda a: a(), args) [-1, -1] &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append((lambda i: lambda: i)(i)) ... &gt;&gt;&gt; map(lambda a: a(), args) [1, -1] &gt;&gt;&gt; args = [] &gt;&gt;&gt; for i in t: ... args.append(lambda i=i: i) ... &gt;&gt;&gt; map(lambda a: a(), args) [1, -1] </code></pre>