方法
GLibStringfree
声明 [源]
gchar*
g_string_free (
GString* string,
gboolean free_segment
)
描述 [源]
释放为 GString
分配的内存。如果 free_segment
为 TRUE
,它还会释放字符数据。如果它是 FALSE
,则调用者获得缓冲区的所有权,并在使用后必须使用 g_free() 释放它。
考虑使用 g_string_free_and_steal() 而不是将 FALSE
传递给此函数。