Java SQL Timestamp after()函数及示例
after()函数是Java SQL 的 Timestamp 类的一部分。该函数返回一个布尔值,表示 Timestamp 对象是否出现在给定的 Timestamp 对象之后。
函数签名:
public boolean after(Timestamp t)
句法:
ts1.after(ts2);
参数:该函数接受 Timestamp 对象作为要检查的参数。
返回值:函数返回布尔数据类型,表示 Timestamp 对象是否出现在给定 Timestamp 对象之后。
异常:函数不抛出任何异常
下面的例子说明了 after()函数的使用
示例1:创建两个不相等的时间戳,并检查第二个时间戳是否在第一个时间戳之后
// 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
示例 2:创建两个相等的时间戳,并检查第二个时间戳是否在第一个时间戳之后
// 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
参考: https: Java/sql/Timestamp.html