Lua中变量的内存RAM地址

发布于 2024-12-28 08:53:51 字数 185 浏览 0 评论 0原文

如何在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧城烟雨 2025-01-04 08:53:51

你不需要,你可以向 Lua API 询问变量的值,或者设置它。

使用 :-

  • lua_getfield
  • lua_setfield

参考...

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 :-

  • lua_getfield
  • lua_setfield

refer...

http://www.lua.org/manual/5.1/manual.html

for a description and examples.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文