📜  JavaScript DataView.getInt16()方法

📅  最后修改于: 2020-10-25 05:47:35             🧑  作者: Mango

JavaScript DataView.getInt16()方法

JavaScript DataView.getInt16()是dataView中的内置方法。用于在指定位置获取带符号的16位整数(短)数字。

注意:16位整数值的范围从0到65,535(无符号),从?32,768到32,767(有符号整数)。

句法

dataview.getInt16(byteOffset)

参量

byteoffset:从读取数据的视图开始处的偏移量(以字节为单位)。

返回值

此方法返回一个带符号的16位整数。

浏览器支持

Chrome 9
Safari 5.1
Firefox 15
Opera 12.1

例子1


输出:

If we give a float value then output will be an Integer

3

例子2


输出:

If there is no data to be stored, then Output will Be:

0

例子3


输出:

PI value will be 

3

例子4


输出:

If we provide Integer value then output will be.

7