GO语言"time"包中"Duration.Minutes"类型的用法及代码示例。
用法:
func(d Duration) Minutes() float64
Minutes 将持续时间作为浮点数返回分钟数。
例子:
package main
import (
"fmt"
"time"
)
func main() {
m, _ := time.ParseDuration("1h30m")
fmt.Printf("The movie is %.0f minutes long.", m.Minutes())
}
输出:
The movie is 90 minutes long.
相关用法
- GO Duration.Milliseconds用法及代码示例
- GO Duration.Microseconds用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO Duration.Truncate用法及代码示例
- GO Duration.String用法及代码示例
- GO Duration.Seconds用法及代码示例
- GO Duration.Nanoseconds用法及代码示例
- GO Duration用法及代码示例
- GO DumpResponse用法及代码示例
- GO DumpRequest用法及代码示例
- GO DumpRequestOut用法及代码示例
- GO Dumper用法及代码示例
- GO Dump用法及代码示例
- GO DecodeLastRuneInString用法及代码示例
- GO DB.QueryRowContext用法及代码示例
- GO Date用法及代码示例
- GO DB.ExecContext用法及代码示例
- GO Dial用法及代码示例
- GO DB.BeginTx用法及代码示例
注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 Duration.Minutes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。