El método println() de PrintWriter Class en Java se usa para romper la línea en la secuencia. Este método no acepta ningún parámetro ni devuelve ningún valor.
Sintaxis:
public void println()
Parámetros: Este método no acepta ningún parámetro.
Devolución: este método no devuelve ningún valor.
Los siguientes métodos ilustran el funcionamiento del método println():
Programa 1:
// Java program to demonstrate // PrintWriter println() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Print the value 'GFG' // to this stream using print() method // This will put the in the // stream till it is printed on the console writer.print("GFG"); // Break the line in the stream // using println() method writer.println(); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG
Programa 2:
// Java program to demonstrate // PrintWriter println() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintWriter instance PrintWriter writer = new PrintWriter(System.out); // Print the value '1.65' // to this stream using print() method // This will put the in the // stream till it is printed on the console writer.print(1.65); // Break the line in the stream // using println() method writer.println(); writer.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
1.65
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