Golang 中的 time.Time.UnmarshalText()函数,示例为

Original: https://www.geeksforgeeks.org/time-time-unmarshaltext-function-in-golang-with-examples/

在围棋语言中,TimePackages 提供了确定和查看时间的功能。 GO 语言中的UnmarshalText()函数用于实现encoding.TextUnmarshaler接口。 这里的时间是一个带引号的字符串,格式为 RFC 3339。 而且,这个函数是在时间包中定义的。 在这里,您需要导入“time”包才能使用这些函数。

语法:

func (t *Time) UnmarshalText(data []byte) error

这里,“t”是指向指定时间的指针,“data”是表示 MarshalText()方法生成的表单编码的字节片。

返回值:它对 MarshalText()方法返回的编码进行解码,并返回错误,但如果没有错误,则返回“nil”。

示例 1:

// Golang program to illustrate the usage of
// Time.UnmarshalText() function

// Including main package
package main

// Importing fmt and time
import "fmt"
import "time"

// Calling main
func main() {

    // Defining t for MarshalText method
    t := time.Date(2014, 5, 3, 13, 9, 7, 64, time.UTC)

    // Calling MarshalText() method
    encoding, _ := t.MarshalText()

    // Defining tm for UnmarshalText() method
    var tm time.Time

    // Calling UnmarshalText method with its parameters
    decode := tm.UnmarshalText(encoding)

    // Prints output
    fmt.Printf("Error: %v\n", decode)
}

发帖主题:Re:Колибри0.7.8.0

示例 2:

// Golang program to illustrate the usage of
// Time.UnmarshalText() function

// Including main package
package main

// Importing fmt and time
import "fmt"
import "time"

// Calling main
func main() {

    // Defining t for MarshalText method
    t := time.Date(2024, 85, 93, 103, 79, 97, 1264, time.UTC)

    // Calling MarshalText() method
    encoding, _ := t.MarshalText()

    // Defining tm for UnmarshalText() method
    var tm time.Time

    // Calling UnmarshalText method with its parameters
    decode := tm.UnmarshalText(encoding)

    // Prints output
    fmt.Printf("Error: %v\n", decode)
}

发帖主题:Re:Колибри0.7.8.0

在这里,上面代码中声明的“t”具有超出通常范围的值,但它们在转换时被标准化。