1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- saved from url=(0014)about:internet -->
<html xmlns:MSHelp="http://www.microsoft.com/MSHelp/" lang="en-us" xml:lang="en-us"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="DC.Type" content="reference">
<meta name="DC.Title" content="Access">
<meta name="DC.subject" content="Access">
<meta name="keywords" content="Access">
<meta name="DC.Relation" scheme="URI" content="../../../reference/containers_overview/concurrent_vector.htm">
<meta name="DC.Format" content="XHTML">
<meta name="DC.Identifier" content="access">
<meta name="DC.Language" content="en-US">
<link rel="stylesheet" type="text/css" href="../../../intel_css_styles.css">
<title>Access</title>
</head>
<body id="access">
<!-- ==============(Start:NavScript)================= -->
<script src="..\..\..\NavScript.js" language="JavaScript1.2" type="text/javascript"></script>
<script language="JavaScript1.2" type="text/javascript">WriteNavLink(3);</script>
<!-- ==============(End:NavScript)================= -->
<a name="access"><!-- --></a>
<h1 class="topictitle1">Access</h1>
<div>
<div class="section">
<div class="Note"><h3 class="NoteTipHead">
Caution</h3>
<p>The methods described in this section may be
concurrently invoked on the same vector as methods for concurrent growth.
However, the returned reference may be to an element that is being concurrently
constructed.
</p>
</div>
<div class="tablenoborder"><table cellpadding="4" summary="" frame="border" border="1" cellspacing="0" rules="all"><span class="tabledesc">The following table provides additional information on the
members of this template class.
</span><thead align="left">
<tr>
<th class="cellrowborder" valign="top" width="33.89830508474576%" id="d55360e42">Member
</th>
<th class="cellrowborder" valign="top" width="66.10169491525423%" id="d55360e45">Description
</th>
</tr>
</thead>
<tbody>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword">reference operator[]( size_type
index )</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>: Reference to element with
the specified index.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword"> const_refrence operator[](
size_type index ) const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>: Const reference to
element with the specified index.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword">reference at( size_type index
)</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>: Reference to element at
specified index.
</p>
<p><strong>Throws</strong> :
<samp class="codeph">std::out_of_range
</samp>if
<samp class="codeph">index >= size()</samp>.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword"> const_reference at( size_type
index ) const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>: Const reference to
element at specified index.
</p>
<p><strong>Throws</strong>:
<samp class="codeph">std::out_of_range</samp> if
<samp class="codeph">index >= size()</samp> or
<samp class="codeph">index</samp> is for broken portion of vector.
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword"> reference front()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>:
<samp class="codeph">(*this)[0]</samp>
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword"> const_reference front()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>:
<samp class="codeph">(*this)[0]</samp>
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword"> reference back()</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>:
<samp class="codeph">(*this)[size()-1]</samp>
</p>
</td>
</tr>
<tr>
<td class="cellrowborder" valign="top" width="33.89830508474576%" headers="d55360e42 "><span class="keyword">const_reference back()
const</span>
</td>
<td class="cellrowborder" valign="top" width="66.10169491525423%" headers="d55360e45 ">
<p><strong>Returns</strong>:
<samp class="codeph">(*this)[size()-1]</samp>
</p>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="familylinks">
<div class="parentlink"><strong>Parent topic:</strong> <a href="../../../reference/containers_overview/concurrent_vector.htm">concurrent_vector</a></div>
</div>
<div></div>
</body>
</html>
|