El método append(char) de PrintStream Class en Java se usa para agregar el valor char especificado en la transmisión. 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 char que se agregará a la transmisión.
Valor devuelto: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método append(char):
Programa 1:
// Java program to demonstrate // PrintStream append(char) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Append the char value 'A' // to this stream using append() method // This will put the charValue in the // stream till it is appended on the console stream.append('A'); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
A
Programa 2:
// Java program to demonstrate // PrintStream append(char) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Append the char value 'G' // to this stream using append() method // This will put the charValue in the // stream till it is appended on the console stream.append('G'); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
G
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA