2011-06-22から1日間の記事一覧

オブジェクト指向のサンプル

Lua

Foo = {} function Foo:meth1() print(self) end function Foo:new() return setmetatable({}, {__index = Foo}) end foo = Foo:new() foo:meth1() --実行結果 table: 003CB908 上記はオブジェクト指向の最小のサンプル。第一引数にselfを渡す必要ないのであ…