
当我有一个包含嵌套在其中的切片的错误结构时,Error.Is 似乎无法正常工作:
package main
import (
"errors"
"fmt"
"os"
)
type Response struct {
Details []string
}
type ErrResponseError struct {
Response Response
}
func (err ErrResponseError) Error() string {
return "response error"
}
func main() {
err := ErrResponseError{}
fmt.Fprintf(os.Stdout, "equal: %v", errors.Is(err, ErrResponseError{}))
}返回
equal: false
package main
import (
"errors"
"fmt"
"os"
)
type Response struct {
Details string // Changed this line
}
type ErrResponseError struct {
Response Response
}
func (err ErrResponseError) Error() string {
return "response error"
}
func main() {
err := ErrResponseError{}
fmt.Fprintf(os.Stdout, "equal: %v", errors.Is(err, ErrResponseError{}))
}返回
equal: true
...................................................... ...................................................... ...................................................... ...................................................... ......................................
来自文档:
因此,您可以通过编写一个 Is 方法来比较两个切片来完成此操作。
默认的误差比较算法检查误差是否等于目标。由于您的错误包含一个切片,因此它不具有可比性。
以上就是错误。如果包含切片,则返回 false的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号