📜  Golang 中的 time.Time.GobEncode()函数示例

📅  最后修改于: 2021-10-25 03:06:11             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go语言的GobEncode()函数用于实现gob.GobEncoder接口。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (t Time) GobEncode() ([]byte, error)

这里,“t”是指定的时间,并且在此方法中返回“byte”和“error”类型的两个值作为输出。

返回值:它返回一个表示接收者编码的字节片,以便它可以传输到GobDecoder并返回发生的错误,但如果没有错误,则返回“nil”。

示例 1:

// Golang program to illustrate the usage of
// Time.GobEncode() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t for GobEncode method
    t := time.Date(2018, 2, 1, 14, 30, 0, 0, time.UTC)
  
    // Calling GobEncode() method
    encoding, error := t.GobEncode()
  
    // Prints receiver's encoding
    fmt.Printf("Receiver's encoding: %v\n", encoding)
  
    // Prints error
    fmt.Printf("Error occurred: %v\n", error)
}

输出:

Receiver's encoding: [1 0 0 0 14 210 5 27 104 0 0 0 0 255 255]
Error occurred: nil

示例 2:

// Golang program to illustrate the usage of
// Time.GobEncode() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Defining t for GobEncode method
    t := time.Date(2019, 37, 43, 76, 90, 88, 5453, time.UTC)
  
    // Calling GobEncode() method
    encoding, error := t.GobEncode()
  
    // Prints receiver's encoding
    fmt.Printf("Receiver's encoding: %v\n", encoding)
  
    // Prints error
    fmt.Printf("Error occurred: %v\n", error)
}

输出:

Receiver's encoding: [1 0 0 0 14 217 157 49 176 0 0 21 77 255 255]
Error occurred: nil

此处,上述代码中所述的“t”具有超出通常范围的值,但它们在转换时进行了标准化。