golang下划线(underscore) 总结">golang下划线(underscore) 总结//用来判断 type T 是否实现了I, 用作类型断言, 如果T没有实现接口I, 则编译错误.type Interface interface {}type T struct{}var _ Interface = &T{} golang下划线(underscore) 总结