📜  Golang 中的 fmt.Errorf()函数示例

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

在 Go 语言中, fmt包使用类似于 C 的 printf() 和 scanf()函数的函数来实现格式化的 I/O。 Go 语言中的fmt.Errorf()函数允许我们使用格式化功能来创建描述性错误消息。而且,这个函数是在 fmt 包下定义的。在这里,您需要导入“fmt”包才能使用这些功能。

句法:

func Errorf(format string, a ...interface{}) error

参数:此函数接受两个参数,如下所示:

  • 字符串:这是带有占位符值的错误消息,例如 %s 表示字符串,%d 表示整数。
  • a …interface{}:这是代码中使用的常量变量名称或任何内置函数。

返回值:它将字符串作为满足错误的值返回。

示例 1:

// Golang program to illustrate the usage of
// fmt.Errorf() function
  
// Including the main package
package main
  
// Importing fmt
import (
    "fmt"
)
  
// Calling main
func main() {
  
    // Declaring some constant variables
    const name, dept = "GeeksforGeeks", "CS"
  
    // Calling the Errorf() function with verb
    // %q which is used for a single-quoted character
    err := fmt.Errorf("%q is a %q Portal.", name, dept)
  
    // Printing the error message
    fmt.Println(err.Error())
}

输出:

"GeeksforGeeks" is a "CS" Portal.

示例 2:

// Golang program to illustrate the usage of
// fmt.Errorf() function
  
// Including the main package
package main
  
// Importing fmt and time
import (
    "fmt"
    "time"
)
  
// Calling main
func main() {
  
    // Calling Errorf() function with verb $v which is used
    // for printing structs
    err := fmt.Errorf("error occurred at: %v", time.Now())
  
    // Printing the error
    fmt.Println("An error happened:", err)
}

输出:

An error happened: error occurred at: 2009-11-10 23:00:00 +0000 UTC m=+0.000000001