A continuación se muestra el ejemplo del método dataView.getInt16() .
- Ejemplo:
javascript
<script> var buffer = new ArrayBuffer(20); var dataview1 = new DataView(buffer, 0, 10); dataview1.setInt16(1, 12); document.write(dataview1.getInt16(1) + "<br>"); </script>
- Producción:
12
dataView.getInt16 () es una función incorporada en dataView que se utiliza para obtener un número entero de 16 bits en la ubicación especificada, es decir, en el byte de desplazamiento desde el inicio de dataView. El rango de valores enteros de 16 bits es de 0 a 65 535 para valores sin signo y de 32 768 a 32 767 para valores enteros con signo.
Sintaxis:
dataview.getInt16(byteOffset)
Parámetros: tiene el parámetro byteOffset que se compensa en un byte y dice dónde leer los datos desde el principio (inicio) de la vista.
Valor devuelto: Devuelve un valor entero de 16 bits con signo.
Ejemplo 1:
Input: dataview1.setInt16(1, 56); document.write(dataview1.getInt16(1)); Output: 56
Ejemplo 2:
Input: dataview1.setInt16(1, 4.5); document.write(dataview1.getInt16(1)); Output: 4
Código JavaScript para mostrar el funcionamiento de este método:
Código #1:
javascript
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // put the data 56 at slot 1 dataview1.setInt16(1, 56); document.write(dataview1.getInt16(1) + "<br>"); </script>
Producción:
56
Código n.º 2: aquí, como se puede ver, esta función no toma un valor flotante cuando se le da este valor flotante a esta función, luego convierte ese valor en un valor entero.
javascript
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view with slot from o to 10 var dataview1 = new DataView(buffer, 0, 10); // put the 4.5 at slot 1 dataview1.setInt16(1, 4.5); document.write(dataview1.getInt16(1) + "<br>"); </script>
Producción:
4
Código n.° 3: cuando no hay datos para almacenar, devuelve NaN, es decir, no es un número.
javascript
<script> // Creating buffer with size in byte var buffer = new ArrayBuffer(20); // Creating a view var dataview1 = new DataView(buffer, 0, 10); // putting no data at slot 1 dataview1.setInt16(1); document.write(dataview1.getInt16(1) + "<br>"); </script>
Producción:
0
Navegadores compatibles:
- Google Chrome 9 y superior
- Borde 12 y superior
- Firefox 15 y superior
- Internet Explorer 10 y superior
- Ópera 12.1 y superior
- Safari 5.1 y superior