El método println() de PrintStream 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 // PrintStream println() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(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 stream.print("GFG"); // Break the line in the stream // using println() method stream.println(); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
GFG
Programa 2:
// Java program to demonstrate // PrintStream println() method import java.io.*; class GFG { public static void main(String[] args) { try { // Create a PrintStream instance PrintStream stream = new PrintStream(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 stream.print(1.65); // Break the line in the stream // using println() method stream.println(); stream.flush(); } catch (Exception e) { System.out.println(e); } } }
Producción:
1.65
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA