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


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


在Go语言中,时间包提供了确定和查看时间的函数。 Go语言中的ParseError.Error()函数用于输出ParseError的字符串描述。此外,此函数在时间包下定义。在这里,您需要导入“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结构类型中使用了更多的值。




相关用法


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