A structure or struct in Golang is a user-defined type, which allows us to create a group of elements of different types into a single unit. Any real-world entity which has some set of properties or fields can be represented as a struct. This concept is generally compared with the classes in object-oriented programming. It can be termed as a lightweight class which does not support inheritance but supports composition.
In Go language, you are allowed to compare two structures if they are of the same type and contain the same fields values with the help of == operator or DeeplyEqual() Method. Both the operator and method return true if the structures are identically equal(in terms of their fields values) to each other, otherwise, return false. And, if the compared variables belong to different structures, then the compiler will give an error. Let us discuss this concept with the help of the examples:
Note: The DeeplyEqual() method is defined under “reflect” package.
Example 1:
Go
package main
import "fmt"
type Author struct {
name string
branch string
language string
Particles int
}
func main() {
a1 := Author{
name: "Moana",
branch: "CSE",
language: "Python",
Particles: 38 ,
}
a2 := Author{
name: "Moana",
branch: "CSE",
language: "Python",
Particles: 38 ,
}
a3 := Author{
name: "Dona",
branch: "CSE",
language: "Python",
Particles: 38 ,
}
if a1 == a2 {
fmt.Println("Variable a1 is equal to variable a2")
} else {
fmt.Println("Variable a1 is not equal to variable a2")
}
if a2 == a3 {
fmt.Println("Variable a2 is equal to variable a3")
} else {
fmt.Println("Variable a2 is not equal to variable a3")
}
}
|
Output:
Variable a1 is equal to variable a2
Variable a2 is not equal to variable a3
Example 2:
Go
package main
import (
"fmt"
"reflect"
)
type Author struct {
name string
branch string
language string
Particles int
}
func main() {
a1 := Author{
name: "Soana",
branch: "CSE",
language: "Perl",
Particles: 48 ,
}
a2 := Author{
name: "Soana",
branch: "CSE",
language: "Perl",
Particles: 48 ,
}
a3 := Author{
name: "Dia",
branch: "CSE",
language: "Perl",
Particles: 48 ,
}
fmt.Println("Is a1 equal to a2: ", reflect.DeepEqual(a1, a2))
fmt.Println("Is a2 equal to a3: ", reflect.DeepEqual(a2, a3))
}
|
Output:
Is a1 equal to a2: true
Is a2 equal to a3: false