La función after() es parte de la clase Timestamp de Java SQL. La función devuelve un valor booleano que representa si el objeto Timestamp ocurre después del objeto Timestamp dado.
Firma de función:
public boolean after(Timestamp t)
Sintaxis:
ts1.after(ts2);
Parámetros: la función acepta el objeto de marca de tiempo como parámetro que debe verificarse.
Valor de retorno: la función devuelve un tipo de datos booleano que representa si el objeto de marca de tiempo ocurre después del objeto de marca de tiempo dado.
Excepción: la función no arroja ninguna excepción.
Los siguientes ejemplos ilustran el uso de la función after()
Ejemplo 1: Cree dos marcas de tiempo no iguales y verifique si la segunda marca de tiempo ocurre después de la primera o no
// Java program to demonstrate the // use of after() function import java.sql.*; public class solution { public static void main(String args[]) { // Create two timestamp objects Timestamp ts1 = new Timestamp(10000); Timestamp ts2 = new Timestamp(10001); boolean b = ts2.after(ts1); // Check if the second timestamp occurs // after first timestamp if (b) { // If true print that the Second Timestamp // occurs after the first timestamp System.out.println("Second Timestamp occurs" + " after first timestamp"); } else { // If false print that the Second Timestamp // does not occur after the first timestamp System.out.println("Second Timestamp does not" + " occur after first timestamp"); } } }
Second Timestamp occurs after first timestamp
Ejemplo 2: Cree dos marcas de tiempo iguales y verifique si la segunda marca de tiempo ocurre después de la primera o no
// Java program to demonstrate the // use of after() function import java.sql.*; public class solution { public static void main(String args[]) { // Create two timestamp objects Timestamp ts1 = new Timestamp(10000); Timestamp ts2 = new Timestamp(10000); boolean b = ts2.after(ts1); // Check if the second timestamp occurs // after first timestamp if (b) { // If true print that the Second Timestamp // occurs after the first timestamp System.out.println("Second Timestamp occurs" + " after first timestamp"); } else { // If false print that the Second Timestamp // does not occur after the first timestamp System.out.println("Second Timestamp does not" + " occur after first timestamp"); } } }
Second Timestamp does not occur after first timestamp
Referencia: https://docs.oracle.com/javase/7/docs/api/java/sql/Timestamp.html
Publicación traducida automáticamente
Artículo escrito por andrew1234 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA