Contents

Go的空白标识符

Contents

是什么?

代表 被忽略的变量 underscore means ignoring the value;

use case

  1. 多个返回值忽略错误值
1
2
3
4
5

if _, isExists := ageMaps["jim"];isExists{
 // do other thing

 }
  1. 引入副作用(side effects)

the import package is ignored, but the init function have taken effect;

1
2
3
4
5
6
7

import (
 _ "github.com/go-sql-driver/mysql"
)
func init() {
 sql.Register("mysql", &MySQLDriver{})
}
  1. 检测是否实现接口
1
var _ DogType = (*BullDog)(nil)