本文介绍了os.Error - 字符串值(Golang)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何获取os.Error的字符串值?即。分配给一个变量。
How do I get the string value of os.Error? ie. assign to a variable.
推荐答案
例如,
For example,
package main
import (
"errors"
"fmt"
)
func main() {
err := errors.New("an error message")
s := err.Error()
fmt.Printf("type: %T; value: %q\n", s, s)
}
输出:
type: string; value: "an error message"
这篇关于os.Error - 字符串值(Golang)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!