El método limit() de java.nio.FloatBuffer Class se usa para modificar el límite de este FloatBuffer. Este método toma el límite a establecer como parámetro y lo establece como el nuevo límite de este búfer. Si la marca de este Buffer ya está definida y es mayor que el nuevo límite especificado, entonces este nuevo límite no se establece y se descarta.
Sintaxis:
public final FloatBuffer limit(int newLimit)
Parámetro: El método toma un parámetro newLimit de tipo entero que se refiere al límite que se establecerá como el nuevo límite del búfer.
Valor devuelto: el método devuelve este búfer después de establecer el nuevo límite especificado como el nuevo límite de este búfer.
Los siguientes ejemplos ilustran el método limit():
Ejemplos 1:
// Java program to demonstrate // limit() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating FloatBuffer // using allocate() method FloatBuffer floatBuffer = FloatBuffer.allocate(4); // put float value in FloatBuffer // using put() method floatBuffer.put(20.5f); floatBuffer.put(30.5f); // print the float buffer System.out.println( "FloatBuffer before " + "setting buffer's limit: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); // Limit the floatBuffer // using limit() method floatBuffer.limit(1); // print the float buffer System.out.println( "\nFloatBuffer after " + "setting buffer's limit: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); } }
FloatBuffer antes de configurar el límite del búfer:
[20.5, 30.5, 0.0, 0.0]
Posición: 2
Límite: 4FloatBuffer después de configurar el límite del búfer:
[20.5, 30.5, 0.0, 0.0]
Posición: 1
Límite: 1
Ejemplos 2:
// Java program to demonstrate // limit() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating FloatBuffer // using allocate() method FloatBuffer floatBuffer = FloatBuffer.allocate(5); // put float value in FloatBuffer // using put() method floatBuffer.put(20.5f); floatBuffer.put(30.5f); floatBuffer.put(40.5f); // mark will be going to // discarded by limit() floatBuffer.mark(); // print the float buffer System.out.println( "FloatBuffer before " + "setting buffer's limit: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); // Limit the floatBuffer // using limit() method floatBuffer.limit(4); // print the double buffer System.out.println( "\nFloatBuffer before " + "setting buffer's limit: " + Arrays.toString( floatBuffer.array()) + "\nPosition: " + floatBuffer.position() + "\nLimit: " + floatBuffer.limit()); } }
FloatBuffer antes de configurar el límite del búfer:
[20.5, 30.5, 40.5, 0.0, 0.0]
Posición: 3
Límite: 5FloatBuffer antes de configurar el límite del búfer:
[20.5, 30.5, 40.5, 0.0, 0.0]
Posición: 3
Límite: 4
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/FloatBuffer.html#limit-int-
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA