首頁 > 後端開發 > Golang > golang判斷字串是否為空的方法

golang判斷字串是否為空的方法

發布: 2019-12-26 09:26:03
原創
26765 人瀏覽過

golang判斷字串是否為空的方法

golang判斷字串是否為空的方法:

var s string
if s=="" {
    
}
登入後複製

或:

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判斷字串是否為空的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板