当前位置:   article > 正文

js中DataView.setInt32()和getInt32()的理解_offset is outside the bounds of the dataview

offset is outside the bounds of the dataview
  1. const buffer = new ArrayBuffer(5);
  2. const view = new DataView(buffer);
  3. view.setInt32(1, 2147483647);
  4. console.log(view.getInt32(0)); //8388607
  5. console.log(view.getInt32(1)); //2147483647
  6. console.log(view.getInt32(2)); //Offset is outside the bounds of the DataView
  7. 共有5个字节
  8. setInt32 4个字节来存储一个数据
  9. 看一下在第一个字节位置存储的二进制数据
  10. const a = 2147483647;
  11. a.toString(2); //'1111111111111111111111111111111'
  12. 5个字节二进制数据存储视图如下:
  13. 每个字节有八个存储单元;
  14. 索引0 索引1 索引2 索引3 索引4
  15. 00000000 011111111 11111111 11111111 00000000
  16. view.getInt32(0) 得到十进制数据8388607,那么它是怎么得来的呢?
  17. 从第一个字节(索引0)的位置,取4个字节,也就是索引0-3的数据;
  18. 二进制转十进制
  19. parseInt("11111111111111111111111",2) //8388607
  20. view.getInt32(2))就会报错 "Offset is outside the bounds of the DataView";
  21. 从第一个字节(索引2)的位置,取4个字节,存储视图中少了一个字节,偏移量超出DataView的界限;

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/145065
推荐阅读
  

闽ICP备14008679号