二进制数据处理和按位与
我看到这个代码示例没有任何解释:
var xhr = new XMLHttpRequest();
xhr.open('GET', '/path/to/image.png', true);
// Trick to pass bytes through unprocessed.
xhr.overrideMimeType('text/plain; charset=x-user-defined');
xhr.onreadystatechange = function(e) {
if (this.readyState == 4 && this.status == 200) {
var binStr = this.responseText;
for (var i = 0, len = binStr.length; i < len; ++i) {
var c = binStr.charCodeAt(i);
//String.fromCharCode(c & 0xff)
var byte = c & 0xff; // byte at offset i
}
}
};
xhr.send();
我想知道那行 var byte = c & 0xff; // 偏移量 i 处的字节正在做什么?为什么使用
AND
与 0xFF
?如果重要的话,此代码是用 JavaScript 编写的。
I saw this code sample without any explanation:
var xhr = new XMLHttpRequest();
xhr.open('GET', '/path/to/image.png', true);
// Trick to pass bytes through unprocessed.
xhr.overrideMimeType('text/plain; charset=x-user-defined');
xhr.onreadystatechange = function(e) {
if (this.readyState == 4 && this.status == 200) {
var binStr = this.responseText;
for (var i = 0, len = binStr.length; i < len; ++i) {
var c = binStr.charCodeAt(i);
//String.fromCharCode(c & 0xff)
var byte = c & 0xff; // byte at offset i
}
}
};
xhr.send();
I wonder what that line var byte = c & 0xff; // byte at offset i
is doing? Why AND
with 0xFF
? This code is in JavaScript if that matters.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该代码似乎存储了一个字节值。显然,开发人员认为
c
可能包含超过 8 位(一个字节)的数据。通过与 0xff 进行“与”运算,任何超过 8 位的数据都会被修剪掉(或至少设置为零)。The code appears to be storing a byte value. Apparently, the developer thought it was possible that
c
could contain more than 8 bits (a byte) of data. ByAND
ing with 0xff, any data beyond 8 bits is trimmed off (or at least set to zero).