El método length() de java.nio.CharBuffer Class se utiliza para devolver la longitud de este búfer de caracteres. Cuando se ve como una secuencia de caracteres, la longitud de un búfer de caracteres es simplemente el número de caracteres entre la posición (inclusive) y el límite (exclusivo); es decir, es equivalente a permanecer().
Sintaxis:
public final int length()
Valor devuelto: este método devuelve la longitud de este búfer de caracteres.
A continuación se muestran los ejemplos para ilustrar el método length():
Ejemplos 1:
// Java program to demonstrate // length() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // Declare and initialize the char array char[] cb = { 'a', 'b', 'c' }; // wrap the char array into CharBuffer // using wrap() method CharBuffer charBuffer = CharBuffer.wrap(cb); // Get the length of the charBuffer // using length() method int length = charBuffer.length(); // print the byte buffer System.out.println("CharBuffer is : " + Arrays.toString( charBuffer.array()) + "\nLength: " + length); } }
CharBuffer is : [a, b, c] Length: 3
Ejemplos 2:
// Java program to demonstrate // length() method import java.nio.*; import java.util.*; public class GFG { public static void main(String[] args) { // defining and allocating CharBuffer // using allocate() method CharBuffer charBuffer = CharBuffer.allocate(4); // append char value in charBuffer // using append() method charBuffer.append('a'); charBuffer.append('b'); // print the char buffer System.out.println("CharBuffer before append : " + Arrays.toString( charBuffer.array()) + "\nLength: " + charBuffer.length()); // append char value in charBuffer // using append() method charBuffer.append('c'); // print the char buffer System.out.println("\nCharBuffer after append : " + Arrays.toString( charBuffer.array()) + "\nLength: " + charBuffer.length()); } }
CharBuffer before append : [a, b,, ] Length: 2 CharBuffer after append : [a, b, c, ] Length: 1
Referencia: https://docs.oracle.com/javase/9/docs/api/java/nio/CharBuffer.html#length–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA