El método toString() de la clase java.time.chrono.ThaiBuddhistDate se utiliza para representar esta fecha ThaiBuddhist en un formato de string. El método simplemente devuelve el formato de texto de este objeto que es fácil de leer y contiene la información requerida de la fecha.
Sintaxis:
public String toString()
Anulaciones: El método toString() anula la clase Object en Java .
Parámetro : este método no acepta ningún argumento como parámetro.
Valor devuelto: este método devuelve la fecha budista tailandesa en formato de string.
Los siguientes programas ilustran el método toString() :
Programa 1:
// Java program to demonstrate // toString() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.now(); // Getting string represntation // of ThaiBuddhist date // by using toString() method String date = hidate.toString(); // Display the result System.out.println( "ThaiBuddhistdate : " + date); } catch (DateTimeException e) { System.out.println( "passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
ThaiBuddhistdate : ThaiBuddhist BE 2563-05-08
Programa 2:
// Java program to demonstrate // toString() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // Creating and initializing // ThaiBuddhistDate Object ThaiBuddhistDate hidate = ThaiBuddhistDate.of( 1345, 05, 23); // Getting string represntation // of ThaiBuddhist date // by using toString() method String date = hidate.toString(); // Display the result System.out.println( "ThaiBuddhistdate : " + date); } catch (DateTimeException e) { System.out.println( "passed parameter can" + " not form a date"); System.out.println( "Exception thrown: " + e); } } }
ThaiBuddhistdate : ThaiBuddhist BE 1345-05-23
Referencia: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ThaiBuddhistDate.html#toString–
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA