JavaTM 2
Platform
Std. Ed. v1.4.0

クラス
java.nio.IntBuffer の使用

IntBuffer を使用しているパッケージ
java.nio データのコンテナであるバッファについて定義し、その他の NIO パッケージの概要情報を提供します。  
 

java.nio での IntBuffer の使用
 

IntBuffer を返す java.nio のメソッド
abstract  IntBuffer ByteBuffer.asIntBuffer()
          int バッファとしてこの byte バッファのビューを作成します。
static IntBuffer IntBuffer.allocate(int capacity)
          新しい int バッファを割り当てます。
static IntBuffer IntBuffer.wrap(int[] array, int offset, int length)
          int 配列をバッファにラップします。
static IntBuffer IntBuffer.wrap(int[] array)
          int 配列をバッファにラップします。
abstract  IntBuffer IntBuffer.slice()
          現在のバッファのコンテンツの共有のサブシーケンスをコンテンツとする新しい int バッファを作成します。
abstract  IntBuffer IntBuffer.duplicate()
          現在のバッファのコンテンツを共有する新しい int バッファを作成します。
abstract  IntBuffer IntBuffer.asReadOnlyBuffer()
          現在のバッファのコンテンツを共有する新しい読み込み専用 int バッファを作成します。
abstract  IntBuffer IntBuffer.put(int i)
          相対「put」メソッドです (オプション)。
abstract  IntBuffer IntBuffer.put(int index, int i)
          絶対「put」メソッドです (オプション)。
 IntBuffer IntBuffer.get(int[] dst, int offset, int length)
          相対一括「get」メソッドです。
 IntBuffer IntBuffer.get(int[] dst)
          相対一括「get」メソッドです。
 IntBuffer IntBuffer.put(IntBuffer src)
          相対一括「put」メソッドです (オプション)。
 IntBuffer IntBuffer.put(int[] src, int offset, int length)
          相対一括「put」メソッドです (オプション)。
 IntBuffer IntBuffer.put(int[] src)
          相対一括「put」メソッドです (オプション)。
abstract  IntBuffer IntBuffer.compact()
          現在のバッファを圧縮します (オプション)。
 

IntBuffer 型のパラメータを持つ java.nio のメソッド
 IntBuffer IntBuffer.put(IntBuffer src)
          相対一括「put」メソッドです (オプション)。
 


JavaTM 2
Platform
Std. Ed. v1.4.0

バグの報告と機能のリクエスト
これ以外の API リファレンスおよび開発者用ドキュメントについては、 Java 2 SDK SE 開発者用ドキュメントを参照してください。 開発者向けの詳細な解説、概念の概要、用語の定義、バグの回避策、 およびコード実例が含まれています。

Java、Java 2D、および JDBC は米国ならびにその他の国における米国 Sun Microsystems, Inc. の商標もしくは登録商標です。
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.