How does go determine whether two interface types are the same and assign one interface to the other interface

how go determines whether two interface types are the same, and assigns one interface to the other interface

May.27,2022

to sum up:
1. Determine whether the type is the same

type I interface {}

var a,b I
a = 1
b = 2

fmt.Sprintf("%-sharpv\n", reflect.TypeOf(a).Kind() == reflect.TypeOf(b).Kind())
  1. what is your specific problem with assigning one interface to another interface?
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3be00-2c2f8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3be00-2c2f8.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?