Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

interface & integer comparison in golang

Tags:

go

I don't understand why the first result is false while second is true.

Any help will be appreciated.

func main() {
    var i interface{}

    i = uint64(0)
    fmt.Println("[1] ", reflect.TypeOf(i), i == 0)

    i = 0
    fmt.Println("[2] ", reflect.TypeOf(i), i == 0)

    var n uint64 = 32
    fmt.Println("[3] ", reflect.TypeOf(n), n == 32) 
}

// result
// [1]  uint64 false
// [2]  int true
// [3]  uint64 true

Try it here Go playground

like image 345
Alex.Li Avatar asked Jan 06 '17 03:01

Alex.Li


People also ask

What does meant by interface?

in·​ter·​face ˈin-tər-ˌfās. : the place at which independent and often unrelated systems meet and act on or communicate with each other. the man-machine interface. : the means by which interaction or communication is achieved at an interface. : a surface forming a common boundary of two bodies, spaces, or phases.

What is an example of a interface?

An interface is a description of the actions that an object can do... for example when you flip a light switch, the light goes on, you don't care how, just that it does. In Object Oriented Programming, an Interface is a description of all functions that an object must have in order to be an "X".

WHAT IS interface and why it is used?

In Java, an interface specifies the behavior of a class by providing an abstract type. As one of Java's core concepts, abstraction, polymorphism, and multiple inheritance are supported through this technology. Interfaces are used in Java to achieve abstraction.


1 Answers

Because 0 is an untyped constant whose default type is int, not uint64, and when doing comparison with an interface, the thing you are comparing to must be both the same type and the same value for them to be considered equal.

https://golang.org/ref/spec#Comparison_operators

The equality operators == and != apply to operands that are comparable. The ordering operators <, <=, >, and >= apply to operands that are ordered. These terms and the result of the comparisons are defined as follows:

A value x of non-interface type X and a value t of interface type T are comparable when values of type X are comparable and X implements T. They are equal if t's dynamic type is identical to X and t's dynamic value is equal to x.

like image 177
dave Avatar answered Oct 13 '22 22:10

dave