本文整理汇总了TypeScript中openfl/utils/ByteArray.readByte函数的典型用法代码示例。如果您正苦于以下问题:TypeScript readByte函数的具体用法?TypeScript readByte怎么用?TypeScript readByte使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了readByte函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it ("testReadWriteByte", function() {
var data = new ByteArray();
data.writeByte(127);
data.position = 0;
assert.equal (data.readByte(), 127);
data.writeByte(34);
data.position = 1;
assert.equal (data.readByte(), 34);
assert.equal (data.length, 2);
});
示例2: function
var flipBytes = function (read:ByteArray, write:ByteArray, readOffset:number, writeLength:number):void {
for (var i = 0; i < writeLength; i++) {
read.position = readOffset + (writeLength - 1 - i);
write.writeByte (read.readByte ());
}
}