Answered by
4 years ago Edited 4 years ago
a metatable allows you to specify special behavior when you do different things to a table with metamethods
a metamethod is just a function that runs when you do that thing to the table
for example, __index is a metamethod that runs whenever you index a table with a nonexistent key
2 | metatable.__index = function (table, key) |
3 | return "The key " .. key .. " does not exist!" |
7 | setmetatable (table, metatable) |
you can also set __index to a table, in which case it will attempt to index that table instead
1 | local fallbackTable = { } |
2 | fallbackTable.burger = "nom nom nom" |
4 | metatable.__index = fallbackTable |
6 | setmetatable (table, metatable) |
there are a lot more metamethods, like __eq
02 | metatable.__eq = function (a, b) |
03 | if a.HasBlocks = = b.HasBlocks then |
09 | roblox.HasBlocks = true |
12 | minecraft.HasBlocks = true |
13 | minecraft.Awesome = false |
14 | setmetatable (roblox, metatable) |
15 | setmetatable (minecraft, metatable) |
17 | print (roblox = = minecraft) |
and also __tostring
02 | metatable.__tostring = function (tbl) |
03 | return "This burger is " .. tbl.Awesomeness * 100 .. "% awesome!" |
06 | local awesomeBurger = { } |
07 | awesomeBurger.Awesomeness = 0.6 |
08 | setmetatable (awesomeBurger, metatable) |
10 | print ( tostring (awesomeBurger)) |
you can find most metamethods and what they do here
https://developer.roblox.com/en-us/articles/Metatables
while metatables aren't exclusively used for OOP, OOP is highly reliant on them, so it's good to familiarize yourself with them