⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 glib-byte-arrays.html

📁 glid编写实例
💻 HTML
📖 第 1 页 / 共 2 页
字号:
<html xmlns:cf="http://docbook.sourceforge.net/xmlns/chunkfast/1.0"><head><meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"><title>Byte Arrays</title><meta name="generator" content="DocBook XSL Stylesheets V1.69.0"><link rel="start" href="index.html" title="GLib Reference Manual"><link rel="up" href="glib-data-types.html" title="GLib Data Types"><link rel="prev" href="glib-Pointer-Arrays.html" title="Pointer Arrays"><link rel="next" href="glib-Balanced-Binary-Trees.html" title="Balanced Binary Trees"><meta name="generator" content="GTK-Doc V1.4 (XML mode)"><link rel="stylesheet" href="style.css" type="text/css"><link rel="chapter" href="glib.html" title="GLib Overview"><link rel="chapter" href="glib-fundamentals.html" title="GLib Fundamentals"><link rel="chapter" href="glib-core.html" title="GLib Core Application Support"><link rel="chapter" href="glib-utilities.html" title="GLib Utilities"><link rel="chapter" href="glib-data-types.html" title="GLib Data Types"><link rel="chapter" href="tools.html" title="GLib Tools"><link rel="index" href="ix01.html" title="Index"><link rel="index" href="ix02.html" title="Index of deprecated symbols"><link rel="index" href="ix03.html" title="Index of new symbols in 2.2"><link rel="index" href="ix04.html" title="Index of new symbols in 2.4"><link rel="index" href="ix05.html" title="Index of new symbols in 2.6"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><table class="navigation" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle"><td><a accesskey="p" href="glib-Pointer-Arrays.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td><td><a accesskey="u" href="glib-data-types.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td><td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td><th width="100%" align="center">GLib Reference Manual</th><td><a accesskey="n" href="glib-Balanced-Binary-Trees.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td></tr></table><div class="refentry" lang="en"><a name="glib-Byte-Arrays"></a><div class="titlepage"></div><div class="refnamediv"><table width="100%"><tr><td valign="top"><h2><span class="refentrytitle">Byte Arrays</span></h2><p>Byte Arrays &#8212; arrays of bytes, which grow automatically as elements are added.</p></td><td valign="top" align="right"></td></tr></table></div><div class="refsynopsisdiv"><h2>Synopsis</h2><pre class="synopsis">#include &lt;glib.h&gt;            <a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>;<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-new">g_byte_array_new</a>                (void);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-sized-new">g_byte_array_sized_new</a>          (<a href="glib-Basic-Types.html#guint">guint</a> reserved_size);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-append">g_byte_array_append</a>             (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             const <a href="glib-Basic-Types.html#guint8">guint8</a> *data,                                             <a href="glib-Basic-Types.html#guint">guint</a> len);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-prepend">g_byte_array_prepend</a>            (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             const <a href="glib-Basic-Types.html#guint8">guint8</a> *data,                                             <a href="glib-Basic-Types.html#guint">guint</a> len);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-remove-index">g_byte_array_remove_index</a>       (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Basic-Types.html#guint">guint</a> index_);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-remove-index-fast">g_byte_array_remove_index_fast</a>  (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Basic-Types.html#guint">guint</a> index_);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-remove-range">g_byte_array_remove_range</a>       (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Basic-Types.html#guint">guint</a> index_,                                             <a href="glib-Basic-Types.html#guint">guint</a> length);void        <a href="glib-Byte-Arrays.html#g-byte-array-sort">g_byte_array_sort</a>               (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Doubly-Linked-Lists.html#GCompareFunc">GCompareFunc</a> compare_func);void        <a href="glib-Byte-Arrays.html#g-byte-array-sort-with-data">g_byte_array_sort_with_data</a>     (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Doubly-Linked-Lists.html#GCompareDataFunc">GCompareDataFunc</a> compare_func,                                             <a href="glib-Basic-Types.html#gpointer">gpointer</a> user_data);<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* <a href="glib-Byte-Arrays.html#g-byte-array-set-size">g_byte_array_set_size</a>           (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Basic-Types.html#guint">guint</a> length);<a href="glib-Basic-Types.html#guint8">guint8</a>*     <a href="glib-Byte-Arrays.html#g-byte-array-free">g_byte_array_free</a>               (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             <a href="glib-Basic-Types.html#gboolean">gboolean</a> free_segment);</pre></div><div class="refsect1" lang="en"><a name="id3167249"></a><h2>Description</h2><p><a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a> is based on <a href="glib-Arrays.html#GArray"><span class="type">GArray</span></a>, to provide arrays of bytes which growautomatically as elements are added.</p><p>To create a new <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a> use <a href="glib-Byte-Arrays.html#g-byte-array-new"><code class="function">g_byte_array_new()</code></a>.</p><p>To add elements to a <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>, use <a href="glib-Byte-Arrays.html#g-byte-array-append"><code class="function">g_byte_array_append()</code></a>, and<a href="glib-Byte-Arrays.html#g-byte-array-prepend"><code class="function">g_byte_array_prepend()</code></a>.</p><p>To set the size of a <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>, use <a href="glib-Byte-Arrays.html#g-byte-array-set-size"><code class="function">g_byte_array_set_size()</code></a>.</p><p>To free a <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>, use <a href="glib-Byte-Arrays.html#g-byte-array-free"><code class="function">g_byte_array_free()</code></a>.</p><div class="example"><a name="id3167375"></a><p class="title"><b>Example&#160;6.&#160;Using a <span class="structname">GByteArray</span></b></p><pre class="programlisting">  GByteArray *gbarray;  gint i;  gbarray = g_byte_array_new ();  for (i = 0; i &lt; 10000; i++)    g_byte_array_append (gbarray, (guint8*) "abcd", 4);  for (i = 0; i &lt; 10000; i++)    {      g_assert (gbarray-&gt;data[4*i] == 'a');      g_assert (gbarray-&gt;data[4*i+1] == 'b');      g_assert (gbarray-&gt;data[4*i+2] == 'c');      g_assert (gbarray-&gt;data[4*i+3] == 'd');    }  g_byte_array_free (gbarray, TRUE);</pre></div></div><div class="refsect1" lang="en"><a name="id3167410"></a><h2>Details</h2><div class="refsect2" lang="en"><a name="id3167415"></a><h3><a name="GByteArray"></a>GByteArray</h3><a class="indexterm" name="id3167426"></a><pre class="programlisting">typedef struct {  guint8 *data;  guint	  len;} GByteArray;</pre><p>The <span class="structname">GByteArray</span> struct allows access to the public fields of a <span class="structname">GByteArray</span>.</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><a href="glib-Basic-Types.html#guint8">guint8</a>&#160;*<em class="structfield"><code>data</code></em>;</span></td><td>a pointer to the element data. The data may be moved as elements areadded to the <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr><tr><td><span class="term"><a href="glib-Basic-Types.html#guint">guint</a>&#160;<em class="structfield"><code>len</code></em>;</span></td><td>the number of elements in the <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id3167511"></a><h3><a name="g-byte-array-new"></a>g_byte_array_new ()</h3><a class="indexterm" name="id3167521"></a><pre class="programlisting"><a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* g_byte_array_new                (void);</pre><p>Creates a new <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td><td>the new <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id3167573"></a><h3><a name="g-byte-array-sized-new"></a>g_byte_array_sized_new ()</h3><a class="indexterm" name="id3167584"></a><pre class="programlisting"><a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* g_byte_array_sized_new          (<a href="glib-Basic-Types.html#guint">guint</a> reserved_size);</pre><p>Creates a new <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a> with <em class="parameter"><code>reserved_size</code></em> bytes preallocated. Thisavoids frequent reallocation, if you are going to add many bytes tothe array. Note however that the size of the array is still 0.</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><em class="parameter"><code>reserved_size</code></em>&#160;:</span></td><td>number of bytes preallocated.</td></tr><tr><td><span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td><td>the new <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id3167667"></a><h3><a name="g-byte-array-append"></a>g_byte_array_append ()</h3><a class="indexterm" name="id3167677"></a><pre class="programlisting"><a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* g_byte_array_append             (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             const <a href="glib-Basic-Types.html#guint8">guint8</a> *data,                                             <a href="glib-Basic-Types.html#guint">guint</a> len);</pre><p>Adds the given bytes to the end of the <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.The array will grow in size automatically if necessary.</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><em class="parameter"><code>array</code></em>&#160;:</span></td><td>a <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr><tr><td><span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td><td>the byte data to be added.</td></tr><tr><td><span class="term"><em class="parameter"><code>len</code></em>&#160;:</span></td><td>the number of bytes to add.</td></tr><tr><td><span class="term"><span class="emphasis"><em>Returns</em></span>&#160;:</span></td><td>the <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr></tbody></table></div></div><hr><div class="refsect2" lang="en"><a name="id3167802"></a><h3><a name="g-byte-array-prepend"></a>g_byte_array_prepend ()</h3><a class="indexterm" name="id3167812"></a><pre class="programlisting"><a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a>* g_byte_array_prepend            (<a href="glib-Byte-Arrays.html#GByteArray">GByteArray</a> *array,                                             const <a href="glib-Basic-Types.html#guint8">guint8</a> *data,                                             <a href="glib-Basic-Types.html#guint">guint</a> len);</pre><p>Adds the given data to the start of the <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.The array will grow in size automatically if necessary.</p><div class="variablelist"><table border="0"><col align="left" valign="top"><tbody><tr><td><span class="term"><em class="parameter"><code>array</code></em>&#160;:</span></td><td>a <a href="glib-Byte-Arrays.html#GByteArray"><span class="type">GByteArray</span></a>.</td></tr><tr><td><span class="term"><em class="parameter"><code>data</code></em>&#160;:</span></td><td>the byte data to be added.</td></tr><tr><td><span class="term"><em class="parameter"><code>len</code></em>&#160;:</span></td><td>the number of bytes to add.</td></tr><tr><td>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -