```
type CustomError struct {
Msg string;
}
func(customError *CustomError)Error() string{
return customError.Msg;
}
func main() {
var err *errors.CustomError = &errors.CustomError{"123456"};
fmt.Println(err.Error());
}
```
这样为什么无法通过编译?
CustomError 实现了error的接口啊?
在写工具的过程中,处处都需要指针,结果结构体指针还不能赋值给接口指针?难道不能像Java 或者其他的语言?BaseClass Pointer = ExtendsClass Ponter?
需要实现这样的操作,该怎么弄?
------
有疑问加站长微信联系(非本文作者)