El método append(CharSequence) de PrintStream Class en Java se usa para escribir la CharSequence especificada en la transmisión. Este valor de CharSequence se toma como parámetro.
Sintaxis:
public PrintStream append(CharSequence charSequence)
Parámetros: este método acepta un parámetro obligatorio charSequence que es la CharSequence que se escribirá en el Stream.
Valor devuelto: este método devuelve esta instancia de PrintStream.
Los siguientes métodos ilustran el funcionamiento del método append(CharSequence):
Programa 1:
// Java program to demonstrate // PrintStream append(CharSequence) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the CharSequence 'GeeksForGeeks' // to this stream using append() method // This will put the charSequence in the stream // till it is printed on the console stream.append("GeeksForGeeks"); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GeeksForGeeks
Programa 2:
// Java program to demonstrate // PrintStream append(CharSequence) method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(System.out); // Write the CharSequence 'GFG' // to this stream using append() method // This will put the charSequence in the stream // till it is printed on the console stream.append("GFG"); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG
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