当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Golang time.Truncate()用法及代码示例


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的Truncate()函数用于查找将规定的持续时间‘d’朝零舍入到‘m’持续时间的倍数的结果。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。

用法:

func (d Duration) Truncate(m Duration) Duration

此处,d是将被舍入的持续时间,m是倍数。

返回值:它返回将规定的持续时间‘d’朝零舍入为‘m’持续时间的倍数的结果。但是,如果m小于或等于零,那么它将返回未更改的‘d’。

范例1:



// Golang program to illustrate the usage of 
// Truncate() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import ( 
    "fmt"
    "time"
) 
  
// Calling main 
func main() { 
  
    // Defining duration 
    // of Truncate method 
    tr, _:= time.ParseDuration("45m32.67s") 
  
    // Prints truncated duration 
    fmt.Printf("Truncated duration is:%s",  
                 tr.Truncate(2*time.Second)) 
}

输出:

Truncated duration is:45m32s

在此,将‘d’舍入为m的倍数。

范例2:

// Golang program to illustrate the usage of 
// Truncate() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import ( 
    "fmt"
    "time"
) 
  
// Calling main 
func main() { 
  
    // Defining duration of Truncate method 
    tr, _:= time.ParseDuration("7m11.0530776s") 
  
    // Array of m 
    t:= []time.Duration{ 
        time.Microsecond, 
        time.Second, 
        4 * time.Second, 
        11 * time.Minute, 
    } 
  
    // Using for loop and range to 
    // iterate over an array 
    for _, m:= range t { 
  
        // Prints rounded d of all  
        // the items in an array 
        fmt.Printf("Truncated(%s) is:%s\n", 
                           m, tr.Truncate(m)) 
    } 
}

输出:

Truncated(1µs) is:7m11.053077s
Truncated(1s) is:7m11s
Truncated(4s) is:7m8s
Truncated(11m0s) is:0s

在此,首先形成一个‘t’数组,然后使用一个范围来迭代持续时间‘t’的所有值。最后,使用Truncate()方法来打印上述代码中所有t的舍入值。




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 time.Truncate() Function in Golang With Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。