在Go語(yǔ)言中,切片比數(shù)組更強(qiáng)大,靈活,方便,并且是輕量級(jí)的數(shù)據(jù)結(jié)構(gòu)。切片是可變長(zhǎng)度的序列,用于存儲(chǔ)相同類型的元素,不允許在同一切片中存儲(chǔ)不同類型的元素。在Go切片中,可以使用Compare()函數(shù)將兩個(gè)字節(jié)類型的切片彼此進(jìn)行比較。此函數(shù)返回一個(gè)整數(shù)值,該整數(shù)值表示這些切片相等或不相等,并且這些值是:
如果結(jié)果為0,則slice_1 == slice_2。
如果結(jié)果為-1,則slice_1 <slice_2。
如果結(jié)果為+1,則slice_1> slice_2。
該函數(shù)在bytes包下定義,因此,您必須在程序中導(dǎo)入bytes包才能訪問(wèn)Compare函數(shù)。
語(yǔ)法:
func Compare(slice_1, slice_2 []byte) int
讓我們借助示例來(lái)討論這個(gè)概念:
//比較兩個(gè)字節(jié)切片 package main import ( "bytes" "fmt" ) func main() { //使用簡(jiǎn)寫聲明創(chuàng)建和初始化字節(jié)片 slice_1 := []byte{'G', 'E', 'E', 'K', 'S'} slice_2 := []byte{'G', 'E', 'e', 'K', 'S'} //比較切片 //使用Compare函數(shù) res := bytes.Compare(slice_1, slice_2) if res == 0 { fmt.Println("!..切片相等..!") } else { fmt.Println("!..切片不相等..!") } }
輸出:
!..切片不相等..!
比較兩個(gè)字節(jié)的片示例:
package main import ( "bytes" "fmt" ) func main() { slice_1 := []byte{'A', 'N', 'M', 'O', 'P', 'Q'} slice_2 := []byte{'a', 'g', 't', 'e', 'q', 'm'} slice_3 := []byte{'A', 'N', 'M', 'O', 'P', 'Q'} slice_4 := []byte{'A', 'n', 'M', 'o', 'p', 'Q'} //顯示切片 fmt.Println("切片 1: ", slice_1) fmt.Println("切片 2: ", slice_2) fmt.Println("切片 3: ", slice_3) fmt.Println("切片 4: ", slice_4) //比較切片,使用Compare res1 := bytes.Compare(slice_1, slice_2) res2 := bytes.Compare(slice_1, slice_3) res3 := bytes.Compare(slice_1, slice_4) res4 := bytes.Compare(slice_2, slice_3) res5 := bytes.Compare(slice_2, slice_4) res6 := bytes.Compare(slice_2, slice_1) res7 := bytes.Compare(slice_3, slice_1) res8 := bytes.Compare(slice_3, slice_2) res9 := bytes.Compare(slice_3, slice_4) res10 := bytes.Compare(slice_4, slice_1) res11 := bytes.Compare(slice_4, slice_2) res12 := bytes.Compare(slice_4, slice_3) res13 := bytes.Compare(slice_4, slice_4) fmt.Println("\n結(jié)果 1:", res1) fmt.Println("結(jié)果 2:", res2) fmt.Println("結(jié)果 3:", res3) fmt.Println("結(jié)果 4:", res4) fmt.Println("結(jié)果 5:", res5) fmt.Println("結(jié)果 6:", res6) fmt.Println("結(jié)果 7:", res7) fmt.Println("結(jié)果 8:", res8) fmt.Println("結(jié)果 9:", res9) fmt.Println("結(jié)果 10:", res10) fmt.Println("結(jié)果 11:", res11) fmt.Println("結(jié)果 12:", res12) fmt.Println("結(jié)果 13:", res13) }
輸出:
切片 1: [65 78 77 79 80 81] 切片 2: [97 103 116 101 113 109] 切片 3: [65 78 77 79 80 81] 切片 4: [65 110 77 111 112 81] 結(jié)果 1: -1 結(jié)果 2: 0 結(jié)果 3: -1 結(jié)果 4: 1 結(jié)果 5: 1 結(jié)果 6: 1 結(jié)果 7: 0 結(jié)果 8: -1 結(jié)果 9: -1 結(jié)果 10: 1 結(jié)果 11: -1 結(jié)果 12: 1 結(jié)果 13: 0