blob: 562c9a0b5d15bdd6f64212b897cac64d3819166b (
plain)
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
|
---
title: DataView.prototype.getUint8()
slug: Web/JavaScript/Reference/Global_Objects/DataView/getUint8
tags:
- DataView
- JavaScript
- Méthode
- Prototype
- Reference
- TypedArrays
translation_of: Web/JavaScript/Reference/Global_Objects/DataView/getUint8
original_slug: Web/JavaScript/Reference/Objets_globaux/DataView/getUint8
---
<div>{{JSRef}}</div>
<p>La méthode <strong><code>getUint8()</code></strong> permet de lire un entier non-signé sur 8 bits à l'octet donné par rapport au début de la {{jsxref("DataView")}}.</p>
<div>{{EmbedInteractiveExample("pages/js/dataview-getuint8.html")}}</div>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="syntaxbox"><var>dataview</var>.getUint8(positionOctet)</pre>
<h3 id="Paramètres">Paramètres</h3>
<dl>
<dt><code>positionOctet</code></dt>
<dd>La position, exprimée en nombre d'octets depuis le début de la vue, à laquelle lire les données.</dd>
</dl>
<h3 id="Valeur_de_retour">Valeur de retour</h3>
<p>Un entier sur 8 bits, non-signé.</p>
<h3 id="Erreurs_renvoyées">Erreurs renvoyées</h3>
<dl>
<dt>{{jsxref("RangeError")}}</dt>
<dd>Renvoyée si <code>positionOctet</code> est tel qu'il est en dehors de la vue.</dd>
</dl>
<h2 id="Description">Description</h2>
<p>Il n'y a pas de contrainte d'alignement, les valeurs codées sur plusieurs octets peuvent être obtenues depuis n'importe quelle position.</p>
<h2 id="Exemples">Exemples</h2>
<h3 id="Utilisation_de_la_méthode_getUint8">Utilisation de la méthode <code>getUint8</code></h3>
<pre class="brush:js">var buffer = new ArrayBuffer(8);
var dataview = new DataView(buffer);
dataview.getUint8(1); // 0
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">État</th>
<th scope="col">Commentaires</th>
</tr>
<tr>
<td>{{SpecName('Typed Array')}}</td>
<td>{{Spec2('Typed Array')}}</td>
<td>Remplacée dans ECMAScript 2015.</td>
</tr>
<tr>
<td>{{SpecName('ES2015', '#sec-dataview.prototype.getuint8', 'DataView.prototype.getUint8')}}</td>
<td>{{Spec2('ES2015')}}</td>
<td>Définition initiale au sein d'un standard ECMA.</td>
</tr>
<tr>
<td>{{SpecName('ESDraft', '#sec-dataview.prototype.getuint8', 'DataView.prototype.getUint8')}}</td>
<td>{{Spec2('ESDraft')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p>{{Compat("javascript.builtins.DataView.getUint8")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{jsxref("DataView")}}</li>
<li>{{jsxref("ArrayBuffer")}}</li>
</ul>
|