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


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


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的Time.AppendFormat()函数类似于Format()方法,但该方法还将声明的文本表示形式附加到声明的“b”。此外,此函数在时间包下定义。在这里,您需要导入“time”包才能使用这些函数。

用法:

func (t Time) AppendFormat(b []byte, layout string) []byte

在这里,“t”是指定的时间,“b”是切片的字节,布局保留字符串类型。

返回值:它将文本表示形式附加到“b”,然后返回扩展的缓冲区。

范例1:



// Golang program to illustrate the usage of 
// Time.AppendFormat() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Declaring Time 
    Time:= time.Date(2019, time.January,  
                1, 3, 0, 0, 0, time.UTC) 
  
    // Defining byte of slice 
    b:= []byte("The time is:") 
  
    // Calling AppendFormat method with 
    // its parameter 
    b = Time.AppendFormat(b, "03:00PM") 
  
    // Prints buffer 
    fmt.Println(b) 
}

输出:

[84 104 101 32 116 105 109 101 32 105 115 58 32 48 51 58 48 48 65 77]

在此,时间的文本表示形式将附加到“b”上,然后作为缓冲区返回。

范例2:

// Golang program to illustrate the usage of 
// Time.AppendFormat() function 
  
// Including main package 
package main 
  
// Importing fmt and time 
import "fmt"
import "time"
  
// Calling main 
func main() { 
  
    // Declaring Time 
    Time:= time.Date(2019, time.January, 1,  
                      3, 0, 0, 0, time.UTC) 
  
    // Defining byte of slice 
    b:= []byte("The time is:") 
  
    // Calling AppendFormat method with 
    // its parameter 
    b = Time.AppendFormat(b, time.Kitchen) 
  
    // Prints string 
    fmt.Println(string(b)) 
}

输出:

The time is:3:00AM

在这里,使用预定义的布局,即time.Kitchen,它在Time.Format中使用。在上面的输出中,返回一个字符串而不是缓冲区,因为此处使用string()方法将缓冲区转换为字符串。




相关用法


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