如何访问 Vala 中的环境变量?
如何访问 Vala 中的环境变量? (如上所述)看起来很简单,但我找不到 g_getenv() 是如何映射到 Vala 的。
How do I access environment variables in Vala? (as above) it seems simple, but I can't find how g_getenv() is mapped into Vala.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案就在绑定文件中。 Vala 使用绑定(在 .vapi 文件中)将其构造绑定到 C 语言。在这种情况下,您可以通过 glib-2.0.vapi (在我的系统上位于
/usr/share/vala-0.10/vapi
中)进行 grep,您将看到它被绑定为:方便地掌握核心 VAPI 文件的位置可能非常有用,因为如果您知道函数的 C 名称,则只需 grep 即可找到它。
The answer lies in the bindings file. Vala uses bindings (in .vapi files) for binding its constructs to the C language. In this case you can grep through glib-2.0.vapi (on my system that is in
/usr/share/vala-0.10/vapi
), and you'll see that it is bound as:It can be quite useful to have the location of the core VAPI files handy, because if you know the C name of a function you can just grep for it.