Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

TypedArray.prototype.byteOffset

この記事は編集レビューを必要としています。ぜひご協力ください

この翻訳は不完全です。英語から この記事を翻訳 してください。

概要

ArrayBufferの開始位置からのtyped arrayの(バイト単位の)オフセットを表します。

構文

typedarray.byteOffset

説明

byteOffsetプロパティはsetアクセス関数がundefinedであるアクセスプロパティです。これは、このプロパティを読み込むことのみできることを意味します。TypedArrayが構築されるときその値が設定され、変更されません。 TypedArrayTypedArray objectsの一つです。

byteOffsetプロパティを使う

var buffer = new ArrayBuffer(8);

var uint8 = new Uint8Array(buffer);
uint8.byteOffset; // 0 (no offset specified)

var uint8 = new Uint8Array(buffer, 3);
uint8.byteOffset; // 3 (as specified when constructing Uint8Array)

仕様

仕様 ステータス コメント
ECMAScript 6 (ECMA-262)
The definition of 'TypedArray.prototype.byteOffset' in that specification.
勧告候補 Initial definition.

ブラウザ実装状況

機能 Chrome Firefox (Gecko) Internet Explorer Opera Safari
基本サポート 7.0 4.0 (2) 10 11.6 5.1
機能 Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
基本サポート 4.0 (有) 4.0 (2) 10 11.6 4.2

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: shide55
 最終更新者: shide55,