[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Binding question
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 29 Apr 2005 14:58:04 -0300
> I am fairly new to Lua and wanted to understand better some of the
> C/C++ binding mechanisms. I understand how binding by name works, but
> I am not clear on how "late binding" works. When I say "late binding"
> I refer to the mechanisms used in LuaCOM and LuaInterface for calling
> methods on tables which do not exist at registration time.
Have a look at the following papers:
Roberto Ierusalimschy, Renato Cerqueira and Noemi Rodriguez. Using
reflexivity to interface with CORBA. In IEEE International Conference on
Computer Languages (ICCL'98), Chicago, 1998. IEEE.
(http://www.inf.puc-rio.br/~roberto/docs/iccl.ps.gz)
Fabio Mascarenhas, Roberto Ierusalimschy. LuaInterface: Scripting the
.NET CLR with Lua. Journal of Universal Computer Science, 10(7):892-908,
July 2004.
(http://www.lua.inf.puc-rio.br/luanet/luainterface/luainterface.pdf)
-- Roberto