~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to doc/html/qmultimap.html

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="iso-8859-1"?>
 
2
<!DOCTYPE html
 
3
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
 
5
<!-- /tmp/qt-4.0.0-espenr-1119621036935/qt-x11-opensource-desktop-4.0.0/src/corelib/tools/qmap.cpp -->
 
6
<head>
 
7
    <title>Qt 4.0: QMultiMap Class Reference</title>
 
8
    <style>h3.fn,span.fn { margin-left: 1cm; text-indent: -1cm; }
 
9
a:link { color: #004faf; text-decoration: none }
 
10
a:visited { color: #672967; text-decoration: none }
 
11
td.postheader { font-family: sans-serif }
 
12
tr.address { font-family: sans-serif }
 
13
body { background: #ffffff; color: black; }</style>
 
14
</head>
 
15
<body>
 
16
<table border="0" cellpadding="0" cellspacing="0" width="100%">
 
17
<tr>
 
18
<td align="left" valign="top" width="32"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></td>
 
19
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="annotated.html"><font color="#004faf">Annotated</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td>
 
20
<td align="right" valign="top" width="230"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></td></tr></table><h1 align="center">QMultiMap Class Reference</h1>
 
21
<p>The QMultiMap class is a convenience <a href="qmap.html">QMap</a> subclass that provides multi-valued maps. <a href="#details">More...</a></p>
 
22
<pre>#include &lt;QMultiMap&gt;</pre><p>Part of the <a href="qtcore.html">QtCore</a> module.</p>
 
23
<p>Inherits <a href="qmap.html">QMap&lt;Key, T&gt;</a>.</p>
 
24
<p><b>Note:</b> All the functions in this class are <a href="threads.html#reentrant">reentrant</a>.</p>
 
25
<ul>
 
26
<li><a href="qmultimap-members.html">List of all members, including inherited members</a></li>
 
27
</ul>
 
28
<a name="public-functions"></a>
 
29
<h3>Public Functions</h3>
 
30
<ul>
 
31
<li><div class="fn"/><b><a href="qmultimap.html#QMultiMap">QMultiMap</a></b> ()</li>
 
32
<li><div class="fn"/><b><a href="qmultimap.html#QMultiMap-2">QMultiMap</a></b> ( const QMap&lt;Key, T&gt; &amp; <i>other</i> )</li>
 
33
<li><div class="fn"/>QMap&lt;Key, T&gt;::iterator <b><a href="qmultimap.html#insert">insert</a></b> ( const Key &amp; <i>key</i>, const T &amp; <i>value</i> )</li>
 
34
<li><div class="fn"/>QMap&lt;Key, T&gt;::iterator <b><a href="qmultimap.html#replace">replace</a></b> ( const Key &amp; <i>key</i>, const T &amp; <i>value</i> )</li>
 
35
<li><div class="fn"/>QMultiMap <b><a href="qmultimap.html#operator-2b">operator+</a></b> ( const QMultiMap &amp; <i>other</i> ) const</li>
 
36
<li><div class="fn"/>QMultiMap &amp; <b><a href="qmultimap.html#operator-2b-eq">operator+=</a></b> ( const QMultiMap &amp; <i>other</i> )</li>
 
37
</ul>
 
38
<ul>
 
39
<li><div class="fn"/>38 public functions inherited from <a href="qmap.html#public-functions">QMap</a></li>
 
40
</ul>
 
41
<a name="details"></a>
 
42
<hr />
 
43
<h2>Detailed Description</h2>
 
44
<p>The QMultiMap class is a convenience <a href="qmap.html">QMap</a> subclass that provides multi-valued maps.</p>
 
45
<p>QMultiMap&lt;Key, T&gt; is one of Qt's generic <a href="containers.html#container-classes">container classes</a>. It inherits <a href="qmap.html">QMap</a> and extends it with a few convenience functions that make it more suitable than <a href="qmap.html">QMap</a> for storing multi-valued maps. A multi-valued map is a map that allows multiple values with the same key; <a href="qmap.html">QMap</a> normally doesn't allow that, unless you call <a href="qmap.html#insertMulti">QMap::insertMulti</a>().</p>
 
46
<p>Because QMultiMap inherits <a href="qmap.html">QMap</a>, all of <a href="qmap.html">QMap</a>'s functionality also applies to QMultiMap. For example, you can use <a href="qmap.html#isEmpty">isEmpty</a>() to test whether the map is empty, and you can traverse a QMultiMap using <a href="qmap.html">QMap</a>'s iterator classes (for example, <a href="qmapiterator.html">QMapIterator</a>). But in addition, it provides an <a href="qmultimap.html#insert">insert</a>() function that corresponds to <a href="qmap.html#insertMulti">QMap::insertMulti</a>(), and a <a href="qmultimap.html#replace">replace</a>() function that corresponds to <a href="qmap.html#insert">QMap::insert</a>(). It also provides convenient operator+() and operator+=().</p>
 
47
<p>Example:</p>
 
48
<pre>&nbsp;   QMultiMap&lt;QString, int&gt; map1, map2, map3;
 
49
 
 
50
    map1.insert(&quot;plenty&quot;, 100);
 
51
    map1.insert(&quot;plenty&quot;, 2000);
 
52
    // map1.size() == 2
 
53
 
 
54
    map2.insert(&quot;plenty&quot;, 5000);
 
55
    // map2.size() == 1
 
56
 
 
57
    map3 = map1 + map2;
 
58
    // map3.size() == 3</pre>
 
59
<p>Unlike <a href="qmap.html">QMap</a>, QMultiMap provides no operator[]. Use <a href="qmap.html#value">value</a>() or <a href="qmultimap.html#replace">replace</a>() if you want to access the most recently inserted item with a certain key.</p>
 
60
<p>If you want to retrieve all the values for a single key, you can use values(const Key &amp;key), which returns a <a href="qlist.html">QList</a>&lt;T&gt;:</p>
 
61
<pre>&nbsp;   QList&lt;int&gt; values = map.values(&quot;plenty&quot;);
 
62
    for (int i = 0; i &lt; values.size(); ++i)
 
63
        cout &lt;&lt; values.at(i) &lt;&lt; endl;</pre>
 
64
<p>The items that share the same key are available from most recently to least recently inserted.</p>
 
65
<p>If you prefer the STL-style iterators, you can call <a href="qmap.html#find">find</a>() to get the iterator for the first item with a key and iterate from there:</p>
 
66
<pre>&nbsp;   QMultiMap&lt;QString, int&gt;::iterator i = map.find(&quot;plenty&quot;);
 
67
    while (i != map.end() &amp;&amp; i.key() == &quot;plenty&quot;) {
 
68
        cout &lt;&lt; i.value() &lt;&lt; endl;
 
69
        ++i;
 
70
    }</pre>
 
71
<p>QMultiMap's key and value data types must be <a href="containers.html#assignable-data-types">assignable data types</a>. This covers most data types you are likely to encounter, but the compiler won't let you, for example, store a <a href="qwidget.html">QWidget</a> as a value; instead, store a <a href="qwidget.html">QWidget</a> *. In addition, QMultiMap's key type must provide operator&lt;(). See the <a href="qmap.html">QMap</a> documentation for details.</p>
 
72
<p>See also <a href="qmap.html">QMap</a>, <a href="qmapiterator.html">QMapIterator</a>, <a href="qmutablemapiterator.html">QMutableMapIterator</a>, and <a href="qmultihash.html">QMultiHash</a>.</p>
 
73
<hr />
 
74
<h2>Member Function Documentation</h2>
 
75
<h3 class="fn"><a name="QMultiMap"></a>QMultiMap::QMultiMap ()</h3>
 
76
<p>Constructs an empty map.</p>
 
77
<h3 class="fn"><a name="QMultiMap-2"></a>QMultiMap::QMultiMap ( const <a href="qmap.html">QMap</a>&lt;Key, T&gt; &amp; <i>other</i> )</h3>
 
78
<p>Constructs a copy of <i>other</i> (which can be a <a href="qmap.html">QMap</a> or a <a href="qmultimap.html">QMultiMap</a>).</p>
 
79
<p>See also <a href="qmap.html#operator-eq">operator=</a>().</p>
 
80
<h3 class="fn"><a name="insert"></a><a href="qmap.html">QMap</a>&lt;Key, T&gt;::iterator QMultiMap::insert ( const Key &amp; <i>key</i>, const T &amp; <i>value</i> )</h3>
 
81
<p>Inserts a new item with the key <i>key</i> and a value of <i>value</i>.</p>
 
82
<p>If there is already an item with the same key in the map, this function will simply create a new one. (This behavior is different from <a href="qmultimap.html#replace">replace</a>(), which overwrites the value of an existing item.)</p>
 
83
<p>See also <a href="qmultimap.html#replace">replace</a>().</p>
 
84
<h3 class="fn"><a name="replace"></a><a href="qmap.html">QMap</a>&lt;Key, T&gt;::iterator QMultiMap::replace ( const Key &amp; <i>key</i>, const T &amp; <i>value</i> )</h3>
 
85
<p>Inserts a new item with the key <i>key</i> and a value of <i>value</i>.</p>
 
86
<p>If there is already an item with the key <i>key</i>, that item's value is replaced with <i>value</i>.</p>
 
87
<p>If there are multiple items with the key <i>key</i>, the most recently inserted item's value is replaced with <i>value</i>.</p>
 
88
<p>See also <a href="qmultimap.html#insert">insert</a>().</p>
 
89
<h3 class="fn"><a name="operator-2b"></a>QMultiMap QMultiMap::operator+ ( const QMultiMap &amp; <i>other</i> ) const</h3>
 
90
<p>Returns a map that contains all the items in this map in addition to all the items in <i>other</i>. If a key is common to both maps, the resulting map will contain the key multiple times.</p>
 
91
<p>See also <a href="qmultimap.html#operator-2b-eq">operator+=</a>().</p>
 
92
<h3 class="fn"><a name="operator-2b-eq"></a>QMultiMap &amp; QMultiMap::operator+= ( const QMultiMap &amp; <i>other</i> )</h3>
 
93
<p>Inserts all the items in the <i>other</i> map into this map and returns a reference to this map.</p>
 
94
<p>See also <a href="qmultimap.html#insert">insert</a>() and <a href="qmultimap.html#operator-2b">operator+</a>().</p>
 
95
<p /><address><hr /><div align="center">
 
96
<table width="100%" cellspacing="0" border="0"><tr class="address">
 
97
<td width="30%">Copyright &copy; 2005 <a href="trolltech.html">Trolltech</a></td>
 
98
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
 
99
<td width="30%" align="right"><div align="right">Qt 4.0.0</div></td>
 
100
</tr></table></div></address></body>
 
101
</html>