我有用golang编写的proto3 / grpc函数。有一个if语句写在一个开关中,当值为0时,它没有看到int32为0的值。我打印之前的值并且它是0但if语句仍然运行。在下面的代码中,我在评论中输出了输出。我知道一个int,nil值是0.如果我为lname设置一个值,fname就可以了。任何帮助赞赏。这是我的输出:
map[fname: lname: email: id:0]
0
id = $1
这是我的代码:
func (s *server) GetUsers(ctx context.Context, in *userspb.User) (*userspb.Users, error) {
flds := make(map[string]interface{})
flds["id"] = in.Id // 0
flds["fname"] = in.Fname // "" (empty)
flds["lname"] = in.Lname // "" (empty)
flds["email"] = in.Email // "" (empty)
fmt.Println(flds) //map[lname: email: id:0 fname:]
var where bytes.Buffer
n := 0
for _, v := range flds {
switch v.(type) {
case string:
if v != "" {
n++
}
case int, int32, int64:
if v != 0 {
n++
}
}
}
calledvariables := make([]interface{}, 0)
i := 1
for k, v := range flds {
switch v.(type) {
case string:
if v != "" {
if i != 1 {
where.WriteString(" AND ")
}
ist := strconv.Itoa(i)
where.WriteString(k + " = $" + ist)
calledvariables = append(calledvariables, v)
i++
}
case int, int32, int64, uint32, uint64:
/////// THIS IF STATMENT IS THE ISSUE the ( v is printing the value of 0 and it's in the if statement )
if v != 0 {
fmt.Println(v) // 0
if i != 1 {
where.WriteString(" AND ")
}
ist := strconv.Itoa(i)
where.WriteString(k + " = $" + ist)
calledvariables = append(calledvariables, v)
i++
}
}
}
fmt.Println(where.String()) // id = $1
...
答案 0 :(得分:3)
因为文字0
不是同一类型。如果你这样做:
if v != int32(0) {
当值为int32
时,它按预期工作。不幸的是,你在一个案例中组合了所有的int类型,这将使这个难以/难以正确处理。您可以使用反射来解决问题,使用reflect.Zero在运行时将值与其类型的零值进行比较。