运行 ❯
获取
自己的 Java
服务器
×
更改方向
更改主题,深色/浅色
转到 Spaces
import java.time.LocalTime; // import the LocalTime class public class Main { public static void main(String[] args) { LocalTime myObj = LocalTime.now(); System.out.println(myObj); } } // Note: This example displays the server's local time, which may differ from your local time.