CharArrayWriter size() method in Java with examples
The size() method of the CharArrayWriter class in Java is used to get the current size of the buffer.
Syntax:
public int size()
Parameters: This method does not accept any parameter.
Return Value: This method returns an integer value which signifies the current size of the buffer.
Below program illustrate the above method:
Program 1:
// Java program to illustrate // the size() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initailizing the character array char[] geek = { 'G', 'E', 'E', 'K', 'S' }; // Initailizing 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()); } } |
Size of char_array1 : 5
Program 2:
// Java program to illustrate // the size() method import java.io.*; public class GFG { public static void main(String[] args) throws IOException { // Initailizing the character array char[] geek = { 'G', 'O', 'P', 'A', 'L', 'L' }; // Initailizing 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()); } } |
Size of char_array1 : 6
Reference: https://docs.oracle.com/javase/10/docs/api/java/io/CharArrayWriter.html#size()
Recommended Posts:
- CharArrayWriter reset() method in Java with examples
- CharArrayWriter close() method in Java with examples
- CharArrayWriter toCharArray() method in Java with examples
- CharArrayWriter flush() method in Java with examples
- CharArrayWriter toString() method in Java with examples
- Dictionary size() Method in Java with Examples
- ArrayList size() method in Java with Examples
- BitSet size() Method in Java with Examples
- ConcurrentSkipListMap size() method in Java with Examples
- BlockingDeque size() method in Java with Examples
- AbstractCollection size() Method in Java with Examples
- Files size() method in Java with Examples
- DelayQueue size() method in Java with Examples
- AbstractMap size() Method in Java with Examples
- List size() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



