Spec-Zone .ru
спецификации, руководства, описания, API
|
public abstract class FloatBuffer extends Buffer implements Comparable<FloatBuffer>
Этот class определяет четыре категории операций на буферы плавающие:
Абсолютный и относительный добраться
и
поместить
методы, которые читают и пишут единственные плавания;
Родственник объем добирается
методы, которые передают непрерывные последовательности плаваний от этого буфера в массив; и
Родственник объем помещается
методы, которые передают непрерывные последовательности плаваний от массива плавающего или некоторого другого буфера плавающего в этот буфер; и
Методы для уплотнение
,
дублирование
, и
разрезание
буфер плавающий.
Буферы плавающие могут быть созданы любой выделение
, который выделяет место для контента буфера,
обертывание
существующий массив плавающий в буфер, или создавая представление существующего буфера байта.
Как буфер байта, буфер плавающий является или прямым или непрямым. Буфер плавающий, создаваемый через методы wrap этого class, будет непрямым. Буфер плавающий, создаваемый как представление буфера байта, будет прямым, если, и только если, буфер самого байта является прямым. Является ли буфер плавающий прямым, может быть определен, вызывая isDirect
метод.
Методы в этом class, у которых иначе нет значения, чтобы возвратиться, определяются, чтобы возвратить буфер, на который они вызываются. Это позволяет вызовам метода быть объединенными в цепочку.
Модификатор и Тип | Метод и Описание |
---|---|
static FloatBuffer |
allocate(int capacity)
Выделяет новый буфер плавающий.
|
float[] |
array()
Возвращает массив плавающий, который поддерживает этот буфер (дополнительная работа).
|
int |
arrayOffset()
Возвращает смещение в пределах массива поддержки этого буфера первого элемента буфера (дополнительная работа).
|
abstract FloatBuffer |
asReadOnlyBuffer()
Создает новый, буфер плавающий только для чтения, который совместно использует контент этого буфера.
|
abstract FloatBuffer |
compact()
Уплотняет этот буфер (дополнительная работа).
|
int |
compareTo(FloatBuffer that)
Сравнивает этот буфер с другим.
|
abstract FloatBuffer |
duplicate()
Создает новый буфер плавающий, который совместно использует контент этого буфера.
|
boolean |
equals(Object ob)
Говорит, равен ли этот буфер другому объекту.
|
abstract float |
get()
Родственник получает метод.
|
FloatBuffer |
get(float[] dst)
Относительный объем получает метод.
|
FloatBuffer |
get(float[] dst, int offset, int length)
Относительный объем получает метод.
|
abstract float |
get(int index)
Абсолютный получают метод.
|
boolean |
hasArray()
Говорит, поддерживается ли этот буфер доступным массивом плавающим.
|
int |
hashCode()
Возвращает текущий хэш-код этого буфера.
|
abstract boolean |
isDirect()
Говорит, является ли этот буфер плавающий прямым.
|
abstract ByteOrder |
order()
Получает порядок байтов этого буфера.
|
abstract FloatBuffer |
put(float f)
Родственник помещенный метод (дополнительная работа).
|
FloatBuffer |
put(float[] src)
Относительный объем помещенный метод (дополнительная работа).
|
FloatBuffer |
put(float[] src, int offset, int length)
Относительный объем помещенный метод (дополнительная работа).
|
FloatBuffer |
put(FloatBuffer src)
Относительный объем помещенный метод (дополнительная работа).
|
abstract FloatBuffer |
put(int index, float f)
Абсолютный помещенный метод (дополнительная работа).
|
abstract FloatBuffer |
slice()
Создает новый буфер плавающий, контент которого является совместно используемой подпоследовательностью контента этого буфера.
|
Строка |
toString()
Возвращает строку, суммирующую состояние этого буфера.
|
static FloatBuffer |
wrap(float[] array)
Обертывает массив плавающий в буфер.
|
static FloatBuffer |
wrap(float[] array, int offset, int length)
Обертывает массив плавающий в буфер.
|
public static FloatBuffer allocate(int capacity)
Позиция нового буфера будет нулем, его предел будет его емкостью, ее метка будет неопределена, и каждый из ее элементов будет инициализирован, чтобы обнулить. У этого будет a поддержка массива
, и
массив смещается
будет нуль.
capacity
- Емкость нового буфера, в плаванияхIllegalArgumentException
- Если capacity является отрицательным целым числомpublic static FloatBuffer wrap(float[] array, int offset, int length)
Новый буфер будет поддержан данным массивом плавающим; то есть, модификации к буферу заставят массив быть измененным и наоборот. Емкостью нового буфера будет array.length, его позицией будет offset, его пределом будет offset + length, и его метка будет неопределена. поддержка массива
будет данный массив, и
массив смещается
будет нуль.
array
- Массив, который поддержит новый буферoffset
- Смещение подмассива, который будет использоваться; должно быть неотрицательным и не больше чем array.length. Позиция нового буфера будет установлена в это значение.length
- Длина подмассива, который будет использоваться; должно быть неотрицательным и не больше чем array.length - offset. Предел нового буфера будет установлен к offset + length.IndexOutOfBoundsException
- Если предварительные условия на offset и параметрах length не содержатpublic static FloatBuffer wrap(float[] array)
Новый буфер будет поддержан данным массивом плавающим; то есть, модификации к буферу заставят массив быть измененным и наоборот. Емкостью нового буфера и пределом будет array.length, его позиция будет нулем, и его метка будет неопределена. поддержка массива
будет данный массив, и
массив смещается
будет нуль.
array
- Массив, который поддержит этот буферpublic abstract FloatBuffer slice()
Контент нового буфера запустится в текущей позиции этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере, и наоборот; позиция этих двух буферов, предел, и значения метки будут независимы.
Позиция нового буфера будет нулем, его емкость и его предел будут числом плаваний, остающихся в этом буфере, и его метка будет неопределена. Новый буфер будет прямым, если, и только если, этот буфер является прямым, и это будет только для чтения, если, и только если, этот буфер только для чтения.
public abstract FloatBuffer duplicate()
Контент нового буфера будет контентом этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере, и наоборот; позиция этих двух буферов, предел, и значения метки будут независимы.
Емкость нового буфера, предел, позиция, и значения метки будут идентичны таковым из этого буфера. Новый буфер будет прямым, если, и только если, этот буфер является прямым, и это будет только для чтения, если, и только если, этот буфер только для чтения.
public abstract FloatBuffer asReadOnlyBuffer()
Контент нового буфера будет контентом этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере; новый буфер непосредственно, однако, будет только для чтения и не будет позволять совместно используемому контенту быть измененным. Позиция этих двух буферов, предел, и значения метки будут независимы.
Емкость нового буфера, предел, позиция, и значения метки будут идентичны таковым из этого буфера.
Если этот буфер самостоятельно только для чтения тогда, этот метод ведет себя точно таким же образом как duplicate
метод.
public abstract float get()
BufferUnderflowException
- Если текущая позиция буфера не меньше чем ее пределpublic abstract FloatBuffer put(float f)
Пишет данное плавание в этот буфер в текущей позиции, и затем постепенно увеличивает позицию.
f
- Плавание, которое будет записаноBufferOverflowException
- Если текущая позиция этого буфера не меньше чем ее пределReadOnlyBufferException
- Если этот буфер только для чтенияpublic abstract float get(int index)
index
- Индексирование, из которого будет считано плаваниеIndexOutOfBoundsException
- Если index отрицателен или не меньше чем предел буфераpublic abstract FloatBuffer put(int index, float f)
Пишет, что данное плавание в этот буфер в данном индексирует.
index
- Индексирование, при котором будет записано плаваниеf
- Значение плавающее, которое будет записаноIndexOutOfBoundsException
- Если index отрицателен или не меньше чем предел буфераReadOnlyBufferException
- Если этот буфер только для чтенияpublic FloatBuffer get(float[] dst, int offset, int length)
Этот метод передает плавания от этого буфера в данный целевой массив. Если есть меньше плаваний, остающихся в буфере, чем обязаны удовлетворять запрос, то есть, если length > remaining(), то никакие плавания не передаются и a BufferUnderflowException
бросается.
Иначе, этот метод копирует плавания length с этого буфера в данный массив, запускающийся в текущей позиции этого буфера и при данном смещении в массиве. Позиция этого буфера тогда постепенно увеличивается length.
Другими словами вызов этого метода формы src.get(dst, off, len) имеет точно тот же самый эффект как цикл
for (int i = off; i < off + len; i++) dst[i] = src.get();except that it first checks that there are sufficient floats in this buffer and it is potentially much more efficient.
dst
- The array into which floats are to be writtenoffset
- The offset within the array of the first float to be
written; must be non-negative and no larger than
dst.lengthlength
- The maximum number of floats to be written to the given
array; must be non-negative and no larger than
dst.length - offsetBufferUnderflowException
- If there are fewer than length floats
remaining in this bufferIndexOutOfBoundsException
- If the preconditions on the offset and length
parameters do not holdpublic FloatBuffer get(float[] dst)
This method transfers floats from this buffer into the given destination array. An invocation of this method of the form src.get(a) behaves in exactly the same way as the invocation
src.get(a, 0, a.length)
BufferUnderflowException
- If there are fewer than length floats
remaining in this bufferpublic FloatBuffer put(FloatBuffer src)
This method transfers the floats remaining in the given source
buffer into this buffer. If there are more floats remaining in the
source buffer than in this buffer, that is, if
src.remaining() > remaining(),
then no floats are transferred and a BufferOverflowException
is thrown.
Otherwise, this method copies n = src.remaining() floats from the given buffer into this buffer, starting at each buffer's current position. The positions of both buffers are then incremented by n.
In other words, an invocation of this method of the form dst.put(src) has exactly the same effect as the loop
while (src.hasRemaining()) dst.put(src.get());except that it first checks that there is sufficient space in this buffer and it is potentially much more efficient.
src
- The source buffer from which floats are to be read;
must not be this bufferBufferOverflowException
- If there is insufficient space in this buffer
for the remaining floats in the source bufferIllegalArgumentException
- If the source buffer is this bufferReadOnlyBufferException
- If this buffer is read-onlypublic FloatBuffer put(float[] src, int offset, int length)
This method transfers floats into this buffer from the given
source array. If there are more floats to be copied from the array
than remain in this buffer, that is, if
length > remaining(), then no
floats are transferred and a BufferOverflowException
is
thrown.
Otherwise, this method copies length floats from the given array into this buffer, starting at the given offset in the array and at the current position of this buffer. The position of this buffer is then incremented by length.
In other words, an invocation of this method of the form dst.put(src, off, len) has exactly the same effect as the loop
for (int i = off; i < off + len; i++) dst.put(a[i]);except that it first checks that there is sufficient space in this buffer and it is potentially much more efficient.
src
- The array from which floats are to be readoffset
- The offset within the array of the first float to be read;
must be non-negative and no larger than array.lengthlength
- The number of floats to be read from the given array;
must be non-negative and no larger than
array.length - offsetBufferOverflowException
- If there is insufficient space in this bufferIndexOutOfBoundsException
- If the preconditions on the offset and length
parameters do not holdReadOnlyBufferException
- If this buffer is read-onlypublic final FloatBuffer put(float[] src)
This method transfers the entire content of the given source float array into this buffer. An invocation of this method of the form dst.put(a) behaves in exactly the same way as the invocation
dst.put(a, 0, a.length)
BufferOverflowException
- If there is insufficient space in this bufferReadOnlyBufferException
- If this buffer is read-onlypublic final boolean hasArray()
If this method returns true then the array
and arrayOffset
methods may safely be invoked.
public final float[] array()
Modifications to this buffer's content will cause the returned array's content to be modified, and vice versa.
Invoke the hasArray
method before invoking this
method in order to ensure that this buffer has an accessible backing
array.
array
in class Buffer
ReadOnlyBufferException
- If this buffer is backed by an array but is read-onlyUnsupportedOperationException
- If this buffer is not backed by an accessible arraypublic final int arrayOffset()
If this buffer is backed by an array then buffer position p corresponds to array index p + arrayOffset().
Invoke the hasArray
method before invoking this
method in order to ensure that this buffer has an accessible backing
array.
arrayOffset
in class Buffer
ReadOnlyBufferException
- If this buffer is backed by an array but is read-onlyUnsupportedOperationException
- If this buffer is not backed by an accessible arraypublic abstract FloatBuffer compact()
The floats between the buffer's current position and its limit, if any, are copied to the beginning of the buffer. That is, the float at index p = position() is copied to index zero, the float at index p + 1 is copied to index one, and so forth until the float at index limit() - 1 is copied to index n = limit() - 1 - p. The buffer's position is then set to n+1 and its limit is set to its capacity. The mark, if defined, is discarded.
The buffer's position is set to the number of floats copied, rather than to zero, so that an invocation of this method can be followed immediately by an invocation of another relative put method.
ReadOnlyBufferException
- If this buffer is read-onlypublic abstract boolean isDirect()
public String toString()
public int hashCode()
The hash code of a float buffer depends only upon its remaining elements; that is, upon the elements from position() up to, and including, the element at limit() - 1.
Because buffer hash codes are content-dependent, it is inadvisable to use buffers as keys in hash maps or similar data structures unless it is known that their contents will not change.
hashCode
in class Object
Object.equals(java.lang.Object)
,
System.identityHashCode(java.lang.Object)
public boolean equals(Object ob)
Two float buffers are equal if, and only if,
They have the same element type,
They have the same number of remaining elements, and
The two sequences of remaining elements, considered
independently of their starting positions, are pointwise equal.
This method considers two float elements a
and b
to be equal if
(a == b) || (Float.isNaN(a) && Float.isNaN(b))
.
The values -0.0
and +0.0
are considered to be
equal, unlike Float.equals(Object)
.
A float buffer is not equal to any other type of object.
equals
in class Object
ob
- The object to which this buffer is to be comparedObject.hashCode()
,
HashMap
public int compareTo(FloatBuffer that)
Two float buffers are compared by comparing their sequences of
remaining elements lexicographically, without regard to the starting
position of each sequence within its corresponding buffer.
Pairs of float
elements are compared as if by invoking
Float.compare(float,float)
, except that
-0.0
and 0.0
are considered to be equal.
Float.NaN
is considered by this method to be equal
to itself and greater than all other float
values
(including Float.POSITIVE_INFINITY
).
A float buffer is not comparable to any other type of object.
compareTo
in interface Comparable<FloatBuffer>
that
- the object to be compared.public abstract ByteOrder order()
The byte order of a float buffer created by allocation or by
wrapping an existing float array is the native order
of the underlying
hardware. The byte order of a float buffer created as a view of a byte buffer is that of the
byte buffer at the moment that the view is created.
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2013, Oracle and/or its affiliates. All rights reserved.
DRAFT ea-b92