要比較兩個(gè)Java毫秒時(shí)間戳的大小,你可以將它們轉(zhuǎn)換為Instant
對(duì)象,然后使用compareTo()
方法進(jìn)行比較。以下是一個(gè)簡(jiǎn)單的示例:
import java.time.Instant;
public class CompareMillis {
public static void main(String[] args) {
// 創(chuàng)建兩個(gè)毫秒時(shí)間戳
long timestamp1 = 1627430400000L;
long timestamp2 = 1627430460000L;
// 將毫秒時(shí)間戳轉(zhuǎn)換為Instant對(duì)象
Instant instant1 = Instant.ofEpochMilli(timestamp1);
Instant instant2 = Instant.ofEpochMilli(timestamp2);
// 使用compareTo()方法比較兩個(gè)Instant對(duì)象的大小
int comparison = instant1.compareTo(instant2);
if (comparison > 0) {
System.out.println("timestamp1 大于 timestamp2");
} else if (comparison < 0) {
System.out.println("timestamp1 小于 timestamp2");
} else {
System.out.println("timestamp1 等于 timestamp2");
}
}
}
在這個(gè)示例中,我們首先創(chuàng)建了兩個(gè)毫秒時(shí)間戳timestamp1
和timestamp2
。然后,我們使用Instant.ofEpochMilli()
方法將這兩個(gè)毫秒時(shí)間戳轉(zhuǎn)換為Instant
對(duì)象。最后,我們使用compareTo()
方法比較這兩個(gè)Instant
對(duì)象的大小,并根據(jù)比較結(jié)果輸出相應(yīng)的信息。