El método position(int newPosition) de java.nio.CharBuffer Class se usa para establecer la posición de este búfer. Si la marca está definida y es más grande que la nueva posición, se descarta.
Sintaxis:
public CharBuffer position(int newPosition)
Parámetros: este método toma como parámetro la nueva posición, que es el nuevo valor de posición. Debe ser no negativo y no mayor que el límite actual.
Valor devuelto: este método devuelve este búfer.
A continuación se muestran los ejemplos para ilustrar el método position() :
Ejemplos 1:
// Java program to demonstrate // position() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { char[] carr = { 'a', 'b', 'c', 'd' }; // creating object of CharBuffer // and allocating size capacity CharBuffer cb = CharBuffer.wrap(carr); // try to set the position at index 2 // using position() method cb.position(2); // Set this buffer mark position cb.mark(); // try to set the position at index 4 // using position() method cb.position(4); // display position System.out.println("position before reset: " + cb.position()); // try to call reset() to restore // to the position we marked cb.reset(); // display position System.out.println("position after reset: " + cb.position()); } }
Producción:
position before reset: 4 position after reset: 2
Ejemplos 2:
// Java program to demonstrate // position() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // creating object of CharBuffer // and allocating size capacity CharBuffer cb = CharBuffer.allocate(4); // try to set the position at index 1 // using position() method cb.position(1); // putting the value of CharBuffer // using append() method cb.append('x'); // try to set the position at index 3 // using position() method cb.position(3); // putting the value of CharBuffer // using append() method cb.append("y"); // display position System.out.println("CharBuffer: " + Arrays.toString(cb.array())); } }
Producción:
CharBuffer: [, x,, y]
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/CharBuffer.html#position-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