golang判断字符串是否为空的方法


本文摘自php中文网,作者尚,侵删。

golang判断字符串是否为空的方法:

1

2

3

4

var s string

if s=="" {

     

}

或:

1

if len(s)==0{}

推荐使用第一种方法判断字符串是否为空,就字符串是否为空这个语义而言,第一种语义更直接了当,应该是更推荐的。

> The one that makes the code clear.
If I'm about to look at element x I typically write
len(s) > x, even for x == 0, but if I care about
"is it this specific string" I tend to write s == "".
>
>It's reasonable to assume that a mature compiler will compile
len(s) == 0 and s == "" into the same, efficient code.
Right now 6g etc do compile s == "" into a function call
while len(s) == 0 is not, but that's been on my to-do list to fix.

>Make the code clear.
>
>Russ

更多golang知识请关注golang教程栏目。

以上就是golang判断字符串是否为空的方法的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

基于apple m1 golang的debug模式

go语言入门-1 环境搭建

golang协程详解和应用

go 自定义error错误

golang基础-单元测试与mock

golang可以写单片机吗

go-zap

一文讲解golang怎么实现反转链表

beego项目和go项目 打包部署到linux

聊聊storagetapper的pool

更多相关阅读请进入《golang》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...