El método append(char) de StringWriter Class en Java se usa para agregar el valor char especificado en el escritor. Este valor de char se toma como parámetro.
Sintaxis:
public void append(char charValue)
Parámetros: este método acepta un parámetro obligatorio charValue que es el valor de carácter que se agregará al escritor.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes programas ilustran el funcionamiento del método append(char):
Programa 1:
// Java program to demonstrate // StringWriter append(char) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // Append the char value 'A' // to this writer using append() method // This will put the charValue in the // writer till it is appended on the console writer.append('A'); System.out.println(writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
A
Programa 2:
// Java program to demonstrate // StringWriter append(char) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a StringWriter instance StringWriter writer = new StringWriter(); // Append the char value 'G' // to this writer using append() method // This will put the charValue in the // writer till it is appended on the console writer.append('G'); System.out.println(writer.toString()); } catch (Exception e) { System.out.println(e); } } }
Producción:
G