GO语言"time"包中"Duration.String"类型的用法及代码示例。
用法:
func(d Duration) String() string
String 返回一个表示持续时间的字符串,格式为 "72h3m0.5s"。前导零单元被省略。作为一种特殊情况,小于一秒的持续时间格式使用更小的单位(毫秒、微秒或纳秒)来确保前导数字不为零。零持续时间格式为 0。
例子:
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(1*time.Hour + 2*time.Minute + 300*time.Millisecond)
fmt.Println(300 * time.Millisecond)
}
输出:
1h2m0.3s 300ms
相关用法
- GO Duration.Seconds用法及代码示例
- GO Duration.Hours用法及代码示例
- GO Duration.Round用法及代码示例
- GO Duration.Truncate用法及代码示例
- GO Duration.Minutes用法及代码示例
- GO Duration.Milliseconds用法及代码示例
- GO Duration.Microseconds用法及代码示例
- 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.String。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。