Go 函数检查是否是夏令时 (DST)
在 Ruby 中,有 Time#dst?函数,如果当前时间处于夏令时 (DST),则返回 true。 Go 标准库中有类似的函数吗?
答案是有的。 2021 年 8 月,Go 1.17 发布,引入了 time.Time 方法 IsDST。
用法:
IsDST 语法如下:
<code class="go">func (t Time) IsDST() bool</code>
示例:
以下是如何使用 IsDST 方法的示例:
<code class="go">package main import ( "fmt" "time" ) func main() { t := time.Now() if t.IsDST() { fmt.Println("It is daylight saving time") } else { fmt.Println("It is not daylight saving time") } }</code>
以上是是否有 Go 函数来检查是否是夏令时 (DST)?的详细内容。更多信息请关注PHP中文网其他相关文章!