El método size() de la clase CharArrayWriter en Java se usa para obtener el tamaño actual del búfer.
Sintaxis :
public int size()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor entero que indica el tamaño actual del búfer.
El siguiente programa ilustra el método anterior:
Programa 1:
Java
// Java program to illustrate // the size() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initializing the character array char[] geek = { 'G', 'E', 'E', 'K', 'S' }; // Initializing the CharArrayWriter CharArrayWriter char_array1 = new CharArrayWriter(); for (int c = 72; c < 77; c++) { // Use of write(int char) // Writer int value to the Writer char_array1.write(c); } // Use of size() method System.out.println("\nSize of char_array1 : " + char_array1.size()); } }
Producción:
Size of char_array1 : 5
Programa 2:
Java
// Java program to illustrate // the size() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initializing the character array char[] geek = { 'G', 'O', 'P', 'A', 'L', 'L' }; // Initializing the CharArrayWriter CharArrayWriter char_array1 = new CharArrayWriter(); for (int c = 72; c < 78; c++) { // Use of write(int char) // Writer int value to the Writer char_array1.write(c); } // Use of size() method System.out.println("\nSize of char_array1 : " + char_array1.size()); } }
Producción:
Size of char_array1 : 6
Referencia : https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#size()