Lua中变量的内存RAM地址
如何在C++中访问Lua语言中声明的变量的内存地址???
换句话说(书面Lua示例):
X = 10
如何访问在Lua上声明的变量X的内存地址?
地址 = (&X) ?????????
请帮助我!
How to access in C++, the memory address of a variable declared in the language Lua???
in other words (example in written Lua):
X = 10
How to access the memory address of the variable X, which was declared on the Lua?
address = (&X) ?????????
Help me please!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要,你可以向 Lua API 询问变量的值,或者设置它。
使用 :-
参考...
http://www.lua.org/manual/ 5.1/manual.html
获取描述和示例。
You don't, you ask the Lua API for the value of the variable, or set it.
use :-
refer...
http://www.lua.org/manual/5.1/manual.html
for a description and examples.