我有一個C++類,我想通過一個全局變量來提供訪問的LUA腳本,但是當我嘗試使用它,我得到以下錯誤: terminate called after throwing an instance of 'luabind::error'
what(): lua runtime error
baz.lua:3: attempt to index global 'foo' (a nil value)
是否可以使用Luabind從C++應用程序實例化Lua「類」?爲了說明這個問題,考慮下面這個簡單的Lua中: class "Person"
function Person:__init(name)
self.name = name
end
function Person:display()
print(self.name)
end
我可以在同一Lua中實例化這個