Lua - Reflection - 获取对象上的函数/字段列表? [英] Lua - Reflection - Get list of functions/fields on an object?

查看:514
本文介绍了Lua - Reflection - 获取对象上的函数/字段列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是Lua的新手,并且在一个程序的alpha版本中处理Lua作为脚本语言。开发人员没有反应,我需要得到一些可以从Lua代码访问的C ++对象提供的函数列表。



有什么简单的方法来查看什么字段

在Lua中,要查看对象的成员,可以使用:

  for键,值对(o)do 
print(found member.. key);不幸的是,我不知道这是否适用于从C ++导入的对象。


I'm new to Lua and dealing with Lua as a scripting language in an alpha release of a program. The developer is unresponsive and I need to get a list of functions provided by some C++ objects which are accessible from the Lua code.

Is there any easy way to see what fields and functions these objects expose?

解决方案

In Lua, to view the members of a object, you can use:

for key,value in pairs(o) do
    print("found member " .. key);
end

Unfortunately I don't know if this will work for objects imported from C++.

这篇关于Lua - Reflection - 获取对象上的函数/字段列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆