简体   繁体   中英

How do I access environment variables in 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.

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:

unowned string? GLib.Environment.get_variable(string name)

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM