Spec-Zone .ru
спецификации, руководства, описания, API
|
public abstract class DoubleBuffer extends Buffer implements Comparable<DoubleBuffer>
Этот class определяет четыре категории операций на двойные буферы:
Абсолютный и относительный добраться
и
поместить
методы, которые читают и пишут единственный, удваиваются;
Родственник объем добирается
методы, которые передают непрерывные последовательности, удваиваются от этого буфера в массив; и
Родственник объем помещается
методы, которые передают непрерывные последовательности, удваиваются от двойного массива или некоторого другого двойного буфера в этот буфер; и
Методы для уплотнение
,
дублирование
, и
разрезание
двойной буфер.
Двойные буферы могут быть созданы любой выделение
, который выделяет место для контента буфера,
обертывание
существующий двойной массив в буфер, или создавая представление существующего буфера байта.
Как буфер байта, двойной буфер является или прямым или непрямым. Двойной буфер, создаваемый через методы wrap этого class, будет непрямым. Двойной буфер, создаваемый как представление буфера байта, будет прямым, если, и только если, буфер самого байта является прямым. Является ли двойной буфер прямым, может быть определен, вызывая isDirect
метод.
Методы в этом class, у которых иначе нет значения, чтобы возвратиться, определяются, чтобы возвратить буфер, на который они вызываются. Это позволяет вызовам метода быть объединенными в цепочку.
Модификатор и Тип | Метод и Описание |
---|---|
static DoubleBuffer |
allocate(int capacity)
Выделяет новый двойной буфер.
|
double[] |
array()
Возвращает двойной массив, который поддерживает этот буфер (дополнительная работа).
|
int |
arrayOffset()
Возвращает смещение в пределах массива поддержки этого буфера первого элемента буфера (дополнительная работа).
|
abstract DoubleBuffer |
asReadOnlyBuffer()
Создает новый, двойной буфер только для чтения, который совместно использует контент этого буфера.
|
abstract DoubleBuffer |
compact()
Уплотняет этот буфер (дополнительная работа).
|
int |
compareTo(DoubleBuffer that)
Сравнивает этот буфер с другим.
|
abstract DoubleBuffer |
duplicate()
Создает новый двойной буфер, который совместно использует контент этого буфера.
|
boolean |
equals(Object ob)
Говорит, равен ли этот буфер другому объекту.
|
abstract double |
get()
Родственник получает метод.
|
DoubleBuffer |
get(double[] dst)
Относительный объем получает метод.
|
DoubleBuffer |
get(double[] dst, int offset, int length)
Относительный объем получает метод.
|
abstract double |
get(int index)
Абсолютный получают метод.
|
boolean |
hasArray()
Говорит, поддерживается ли этот буфер доступным двойным массивом.
|
int |
hashCode()
Возвращает текущий хэш-код этого буфера.
|
abstract boolean |
isDirect()
Говорит, является ли этот двойной буфер прямым.
|
abstract ByteOrder |
order()
Получает порядок байтов этого буфера.
|
abstract DoubleBuffer |
put(double d)
Родственник помещенный метод (дополнительная работа).
|
DoubleBuffer |
put(double[] src)
Относительный объем помещенный метод (дополнительная работа).
|
DoubleBuffer |
put(double[] src, int offset, int length)
Относительный объем помещенный метод (дополнительная работа).
|
DoubleBuffer |
put(DoubleBuffer src)
Относительный объем помещенный метод (дополнительная работа).
|
abstract DoubleBuffer |
put(int index, double d)
Абсолютный помещенный метод (дополнительная работа).
|
abstract DoubleBuffer |
slice()
Создает новый двойной буфер, контент которого является совместно используемой подпоследовательностью контента этого буфера.
|
Строка |
toString()
Возвращает строку, суммирующую состояние этого буфера.
|
static DoubleBuffer |
wrap(double[] array)
Обертывает двойной массив в буфер.
|
static DoubleBuffer |
wrap(double[] array, int offset, int length)
Обертывает двойной массив в буфер.
|
public static DoubleBuffer allocate(int capacity)
Позиция нового буфера будет нулем, его предел будет его емкостью, ее метка будет неопределена, и каждый из ее элементов будет инициализирован, чтобы обнулить. У этого будет a поддержка массива
, и
массив смещается
будет нуль.
capacity
- Емкость нового буфера, в удваиваетсяIllegalArgumentException
- Если capacity является отрицательным целым числомpublic static DoubleBuffer wrap(double[] 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 DoubleBuffer wrap(double[] array)
Новый буфер будет поддержан данным двойным массивом; то есть, модификации к буферу заставят массив быть измененным и наоборот. Емкостью нового буфера и пределом будет array.length, его позиция будет нулем, и его метка будет неопределена. поддержка массива
будет данный массив, и
массив смещается
будет нуль.
array
- Массив, который поддержит этот буферpublic abstract DoubleBuffer slice()
Контент нового буфера запустится в текущей позиции этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере, и наоборот; позиция этих двух буферов, предел, и значения метки будут независимы.
Позиция нового буфера будет нулем, его емкость и его предел будут числом, удваивается остающийся в этом буфере, и его метка будет неопределена. Новый буфер будет прямым, если, и только если, этот буфер является прямым, и это будет только для чтения, если, и только если, этот буфер только для чтения.
public abstract DoubleBuffer duplicate()
Контент нового буфера будет контентом этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере, и наоборот; позиция этих двух буферов, предел, и значения метки будут независимы.
Емкость нового буфера, предел, позиция, и значения метки будут идентичны таковым из этого буфера. Новый буфер будет прямым, если, и только если, этот буфер является прямым, и это будет только для чтения, если, и только если, этот буфер только для чтения.
public abstract DoubleBuffer asReadOnlyBuffer()
Контент нового буфера будет контентом этого буфера. Изменения к контенту этого буфера будут видимы в новом буфере; новый буфер непосредственно, однако, будет только для чтения и не будет позволять совместно используемому контенту быть измененным. Позиция этих двух буферов, предел, и значения метки будут независимы.
Емкость нового буфера, предел, позиция, и значения метки будут идентичны таковым из этого буфера.
Если этот буфер самостоятельно только для чтения тогда, этот метод ведет себя точно таким же образом как duplicate
метод.
public abstract double get()
BufferUnderflowException
- Если текущая позиция буфера не меньше чем ее пределpublic abstract DoubleBuffer put(double d)
Пишет данное двойное в этот буфер в текущей позиции, и затем постепенно увеличивает позицию.
d
- Двойное, которое будет записаноBufferOverflowException
- Если текущая позиция этого буфера не меньше чем ее пределReadOnlyBufferException
- Если этот буфер только для чтенияpublic abstract double get(int index)
index
- Индексирование, из которого будет считано двойноеIndexOutOfBoundsException
- Если index отрицателен или не меньше чем предел буфераpublic abstract DoubleBuffer put(int index, double d)
Пишет, что данные двойные в этот буфер в данном индексируют.
index
- Индексирование, при котором будет записано двойноеd
- Двойное значение, которое будет записаноIndexOutOfBoundsException
- Если index отрицателен или не меньше чем предел буфераReadOnlyBufferException
- Если этот буфер только для чтенияpublic DoubleBuffer get(double[] 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 doubles in this buffer and it is potentially much more efficient.
dst
- The array into which doubles are to be writtenoffset
- The offset within the array of the first double to be
written; must be non-negative and no larger than
dst.lengthlength
- The maximum number of doubles to be written to the given
array; must be non-negative and no larger than
dst.length - offsetBufferUnderflowException
- If there are fewer than length doubles
remaining in this bufferIndexOutOfBoundsException
- If the preconditions on the offset and length
parameters do not holdpublic DoubleBuffer get(double[] dst)
This method transfers doubles 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 doubles
remaining in this bufferpublic DoubleBuffer put(DoubleBuffer src)
This method transfers the doubles remaining in the given source
buffer into this buffer. If there are more doubles remaining in the
source buffer than in this buffer, that is, if
src.remaining() > remaining(),
then no doubles are transferred and a BufferOverflowException
is thrown.
Otherwise, this method copies n = src.remaining() doubles 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 doubles are to be read;
must not be this bufferBufferOverflowException
- If there is insufficient space in this buffer
for the remaining doubles in the source bufferIllegalArgumentException
- If the source buffer is this bufferReadOnlyBufferException
- If this buffer is read-onlypublic DoubleBuffer put(double[] src, int offset, int length)
This method transfers doubles into this buffer from the given
source array. If there are more doubles to be copied from the array
than remain in this buffer, that is, if
length > remaining(), then no
doubles are transferred and a BufferOverflowException
is
thrown.
Otherwise, this method copies length doubles 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 doubles are to be readoffset
- The offset within the array of the first double to be read;
must be non-negative and no larger than array.lengthlength
- The number of doubles 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 DoubleBuffer put(double[] src)
This method transfers the entire content of the given source double 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 double[] 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 DoubleBuffer compact()
The doubles between the buffer's current position and its limit, if any, are copied to the beginning of the buffer. That is, the double at index p = position() is copied to index zero, the double at index p + 1 is copied to index one, and so forth until the double 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 doubles 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 double 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 double 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 double elements a
and b
to be equal if
(a == b) || (Double.isNaN(a) && Double.isNaN(b))
.
The values -0.0
and +0.0
are considered to be
equal, unlike Double.equals(Object)
.
A double 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(DoubleBuffer that)
Two double 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 double
elements are compared as if by invoking
Double.compare(double,double)
, except that
-0.0
and 0.0
are considered to be equal.
Double.NaN
is considered by this method to be equal
to itself and greater than all other double
values
(including Double.POSITIVE_INFINITY
).
A double buffer is not comparable to any other type of object.
compareTo
in interface Comparable<DoubleBuffer>
that
- the object to be compared.public abstract ByteOrder order()
The byte order of a double buffer created by allocation or by
wrapping an existing double array is the native order
of the underlying
hardware. The byte order of a double 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