Example: GLib.Value and strings

public static int main (string[] args) {
Value value1 = Value (typeof (string));
value1.set_string ("My string");

// Output: ``My string``
print ("%s\n", value1.get_string ());

// Output: ``My string``
print ("%s\n", value1.dup_string ());

// Output: ``My string``
print ("%s\n", (string) value1);

// Output: ``My string 2``
value1 = "My string 2";
print ("%s\n", (string) value1);

return 0;
}

 valac --pkg gobject-2.0 GLib.Value.vala

See:




2022 vala-language.org