- java.time 包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - Instant(即时)
- java.time - LocalDate(本地日期)
- java.time - LocalDateTime(本地日期时间)
- java.time - LocalTime(本地时间)
- java.time - MonthDay(月份日期)
- java.time - OffsetDateTime(偏移日期时间)
- java.time - OffsetTime(偏移时间)
- java.time - Period(期间)
- java.time - Year(年)
- java.time - YearMonth(年月份)
- java.time - ZonedDateTime(日期时间带时区)
- java.time - ZoneId(时区 Id)
- java.time - ZoneOffset(时区偏移量)
- java.time 包枚举
- java.time - Month(月份)
- java.time 有用资源
- java.time - 讨论
java.time.LocalDateTime.getSecond() 方法示例
说明
java.time.LocalDateTime.getSecond() 方法获取分钟的秒字段。
声明
以下是 java.time.LocalDateTime.getSecond() 方法的声明。
public int getSecond()
返回值
从 0 到 59 的分钟秒。
示例
以下示例展示了 java.time.LocalDateTime.getSecond() 方法的用法。
package com.tutorialspoint; import java.time.LocalDateTime; public class LocalDateTimeDemo { public static void main(String[] args) { LocalDateTime date = LocalDateTime.parse("2017-02-03T12:30:30"); System.out.println(date.getSecond()); } }
让我们编译并运行以上程序,这会产生以下结果 −
30
广告