|
Tables as Objects in Lua - a gentle introduction to data driven programming
In Lua, everything that's a collection is held in a table. During the Lua Course I have been giving this week, I set up a whole series of tables, object-like, to hold details of each station on the British main rail network. As well as data, the table holds code / code references, and by adding different code to different station tables, the calculations made later can automatically be varied to take account of the type of station that's involved. So that's sub-class like, and polymorphism, in a very clever way.
The source code is [here]. The railstats data file it uses is [here]. (written 2011-08-17)
Associated topics are indexed under U107 - Object Orientation - the Lua way [3730] What is a metatable? How do I set one up? How do I use them? Lua - (2012-05-12) [3727] Using Lua tables as objects - (2012-05-11) [3694] Special __ methods you can use in Lua metatables - (2012-04-12) [3683] Weak references in Lua - what are they, and why use them? - (2012-04-04) [3524] Metaclasses (Python) and Metatables (Lua) - (2011-11-17) [3142] Private and Public - and things between - (2011-01-22) [2710] __index and __newindex in Lua - metatable methods - (2010-04-05) [2703] Lua Metatables - (2010-04-02) [2701] Is Lua an Object Oriented language? - (2010-04-01) [2455] Lua examples - coroutines, error handling, objects, etc - (2009-10-15) [2359] A fresh example - objects the Lua way - (2009-08-13) [2318] For Lua Programmers AND for Town Planners - (2009-08-02) [1819] Calling base class constructors - (2008-10-03) [1743] First class functions in Lua lead to powerful OO facilities - (2008-08-07) [1699] If you are learning Lua, here are some more examples - (2008-07-06) [1692] Towards Object Oriented Programming in Lua - (2008-06-30)
Some other Articles
$ is atomic and % and @ are molecular - PerlFrom fish, loaves and apples to money, plastic cards and BACS (Perl references explained)Perl - making best use of the flexibility, but also using good coding standardsDoes a for loop evaluate its end condition once, or on every iteration?Tables as Objects in Lua - a gentle introduction to data driven programmingParallel but not really parallel. Moving game characters. Coroutines in Lua. The difference between lists and strings - TclRodwell Trail, WeymouthWhat costs 8.20 from Melksham, or 22.30 via Chippenham?For programmers who use Internet Explorer as their browser
|
3732 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75 at 50 posts per page
This is a page archived from The Horse's Mouth at
http://www.wellho.net/horse/ -
the diary and writings of Graham Ellis.
Every attempt was made to provide current information at the time the
page was written, but things do move forward in our business - new software
releases, price changes, new techniques. Please check back via
our main site for current courses,
prices, versions, etc - any mention of a price in "The Horse's Mouth"
cannot be taken as an offer to supply at that price.
Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).
|
|