クラス
java.nio.IntBufferの使用
IntBufferを使用するパッケージ
-
java.nioでのIntBufferの使用
修飾子と型メソッド説明static IntBufferIntBuffer.allocate(int capacity)新しいintバッファを割り当てます。abstract IntBufferByteBuffer.asIntBuffer()intバッファとしてこのbyteバッファのビューを作成します。abstract IntBufferIntBuffer.asReadOnlyBuffer()このバッファの内容を共有する新しい読込み専用intバッファを作成します。IntBuffer.clear()このバッファをクリアします。abstract IntBufferIntBuffer.compact()このバッファを圧縮します (オプションの操作)。abstract IntBufferIntBuffer.duplicate()このバッファの内容を共有する新しいintバッファを作成します。IntBuffer.flip()このバッファをフリップ(反転)します。IntBuffer.get(int[] dst)相対一括getメソッドです。IntBuffer.get(int[] dst, int offset, int length)相対一括getメソッドです。IntBuffer.get(int index, int[] dst)絶対一括getメソッド。IntBuffer.get(int index, int[] dst, int offset, int length)絶対一括getメソッド。IntBuffer.limit(int newLimit)このバッファのリミットを設定します。IntBuffer.mark()このバッファの現在位置にマークを設定します。IntBuffer.position(int newPosition)このバッファの位置を設定します。abstract IntBufferIntBuffer.put(int i)相対putメソッドです (オプションの操作)。IntBuffer.put(int[] src)相対一括putメソッドです (オプションの操作)。IntBuffer.put(int[] src, int offset, int length)相対一括putメソッドです (オプションの操作)。abstract IntBufferIntBuffer.put(int index, int i)絶対putメソッドです (オプションの操作)。IntBuffer.put(int index, int[] src)(optional operation)の絶対一括putメソッド。IntBuffer.put(int index, int[] src, int offset, int length)(optional operation)の絶対一括putメソッド。(optional operation)の絶対一括putメソッド。相対一括putメソッドです (オプションの操作)。IntBuffer.reset()バッファの位置を以前にマークした位置に戻します。IntBuffer.rewind()このバッファをリワインド(巻き戻し)します。abstract IntBufferIntBuffer.slice()このバッファの内容の共有のサブシーケンスを内容とする新しいintバッファを作成します。abstract IntBufferIntBuffer.slice(int index, int length)このバッファの内容の共有のサブシーケンスを内容とする新しいintバッファを作成します。static IntBufferIntBuffer.wrap(int[] array)int配列をバッファにラップします。static IntBufferIntBuffer.wrap(int[] array, int offset, int length)int配列をバッファにラップします。修飾子と型メソッド説明intこのバッファを別のバッファと比較します。intこのバッファと指定されたバッファの最初の不一致の相対索引を検索して戻します。(optional operation)の絶対一括putメソッド。相対一括putメソッドです (オプションの操作)。