Lua - Reflection - Get list of functions/fields on an object?(Lua - 反射 - 获取对象上的函数/字段列表?)
问题描述
我是 Lua 的新手,在程序的 alpha 版本中将 Lua 作为脚本语言处理.开发人员没有响应,我需要获取一些可从 Lua 代码访问的 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?
推荐答案
在Lua中,查看一个对象的成员,可以使用:
In Lua, to view the members of a object, you can use:
for key,value in pairs(o) do
print("found member " .. key);
end
不幸的是,我不知道这是否适用于从 C++ 导入的对象.
Unfortunately I don't know if this will work for objects imported from C++.
这篇关于Lua - 反射 - 获取对象上的函数/字段列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Lua - 反射 - 获取对象上的函数/字段列表?


基础教程推荐
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 常量变量在标题中不起作用 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01