陣列是Go語言程式設計中最常用的資料結構之一。顧名思義,數組就是指一系列同一類型資料的集合。數組中包含的每個資料稱為數組元素( element),一個數組包含的元素個數被稱為數組的長度。需要強調的一點是Go語言中數組的長度固定,無法擴容。
java判斷陣列是否為空:
package main import "fmt" func main() { var arr []string if arr == nil { fmt.Println("this is null") } if len(arr) > 0 { fmt.Println("len arr > 0") }else{ fmt.Println("len this is null") } if arr[0] != "" { fmt.Println("arr 0 != null") }else{ fmt.Println("[0] this is null") } }
nil在Go中相當與其它語言中的NULL、null和None等,使用中表示某一個變數為空。
更多golang知識請關注golang教程欄位。
以上是golang判斷數組是否為空的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!