I try to define "Error" method to type "T", but why value changed??
type T int
func (t T) Error() string {
return "bad error"
}
func main() {
var v interface{} = T(5)
fmt.Println(v) //output: bad error, not 5
}
How to explain this case?
This is from the documentation of the
fmt
package:Also:
So, the value
v
is printed using%v
, which will use theerror
interface to print it out.If you use
fmt.Printf("%d",v)
, it should print the integer value.