go语言 判断一个字符串是否为空

if str == "" { ... }

if len(str) == 0 {...}
原文地址:https://www.cnblogs.com/shuai666/p/15194137.html