6
在速度,語法方便性,LOC和許可證方面,最好的Lua OOP庫是什麼?謝謝。最好的Lua OOP庫
我找到了LOOP。 http://loop.luaforge.net/index.html它提供了非常好的語法:
local oo = require "loop.base" local
Date = oo.class
{
-- default field values
day = 1, month = 1, year = 1900,
}
local birthday = Date {} -- instance
但我不喜歡許可證。
和:http://lua-users.org/wiki/ObjectLua
許可證有什麼問題? LOOP使用MIT許可證,這是Lua使用的許可證。 – interjay 2010-04-15 17:20:44
最好的選擇是在公共領域找到簡單的快速代碼並對其進行重新編寫,因此不需要執行文件的許可證。 – 2010-04-15 18:06:22