Java FloatBuffer.slice()
Syntax
FloatBuffer.slice() has the following syntax.
public abstract FloatBuffer slice()
Example
In the following code shows how to use FloatBuffer.slice() method.
// w w w .ja v a 2s . com
import java.nio.FloatBuffer;
public class Main {
public static void main(String[] args) {
FloatBuffer floatBuffer = FloatBuffer.allocate(10);
floatBuffer.put(0,1.23F);
floatBuffer.rewind();
FloatBuffer floatBuffer1 = floatBuffer.slice();
System.out.println(floatBuffer.equals(floatBuffer1));
}
}
The code above generates the following result.