📜  Golang 中的 time.ParseError.Error()函数示例

📅  最后修改于: 2021-10-25 02:14:28             🧑  作者: Mango

在 Go 语言中,时间包提供了确定和查看时间的功能。 Go 语言的ParseError.Error()函数用于输出ParseError的字符串描述。而且,这个函数是在time包下定义的。在这里,您需要导入“time”包才能使用这些功能。

句法:

func (e *ParseError) Error() string

这里,“e”是指向 ParseError 的指针,ParseError 用于解释解析时间字符串的问题。

返回值:它返回ParseError的字符串表示。

示例 1:

// Golang program to illustrate the usage of
// time.ParseError() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring a struct
    // type ParseError
    // with its values
    error := time.ParseError{
        Value:   "1122020",
        Message: " There is an error!",
    }
  
    // Calling Error method 
    // and printing string
    // representation of ParseError
    fmt.Println(error.Error())
}

输出:

parsing time "1122020" There is an error!

这里,返回结构类型ParseError中 Value 和 Message 的字符串表示。

示例 2:

// Golang program to illustrate the usage of
// time.ParseError() function
  
// Including main package
package main
  
// Importing fmt and time
import "fmt"
import "time"
  
// Calling main
func main() {
  
    // Declaring a struct 
    // type ParseError
    // with its values
    error := time.ParseError{
        Layout:    "2001 12 01",
        Value:     "11:34:09",
        ValueElem: "11",
        Message:   " An error occurred!",
    }
  
    // Calling Error method 
    // and printing string
    // representation of ParseError
    fmt.Println(error.Error())
}

输出:

parsing time "11:34:09" An error occurred!

它与上面的示例相同,但这里在 ParseError 结构类型中使用了更多值。