ไป - ชิ้นส่วน
Go Slice เป็นนามธรรมเหนือ Go Array Go Array ช่วยให้คุณสามารถกำหนดตัวแปรที่สามารถเก็บข้อมูลหลายรายการในประเภทเดียวกัน แต่ไม่มีวิธีการ inbuilt เพื่อเพิ่มขนาดแบบไดนามิกหรือรับอาร์เรย์ย่อยของตัวเอง ชิ้นส่วนเอาชนะข้อ จำกัด นี้ มีฟังก์ชั่นยูทิลิตี้มากมายที่จำเป็นใน Array และใช้กันอย่างแพร่หลายในการเขียนโปรแกรม Go
การกำหนดชิ้น
ในการกำหนดชิ้นคุณสามารถประกาศเป็นอาร์เรย์โดยไม่ต้องระบุขนาด หรือคุณสามารถใช้make ฟังก์ชั่นในการสร้างชิ้น
var numbers []int /* a slice of unspecified size */
/* numbers == []int{0,0,0,0,0}*/
numbers = make([]int,5,5) /* a slice of length 5 and capacity 5*/
ฟังก์ชั่น len () และ cap ()
ชิ้นเป็นนามธรรมเหนืออาร์เรย์ มันใช้อาร์เรย์เป็นโครงสร้างพื้นฐาน len() ฟังก์ชันส่งคืนองค์ประกอบที่นำเสนอในส่วนที่ cap()ฟังก์ชันส่งคืนความจุของชิ้นงาน (เช่นจำนวนองค์ประกอบที่สามารถรองรับได้) ตัวอย่างต่อไปนี้อธิบายการใช้งานชิ้น -
package main
import "fmt"
func main() {
var numbers = make([]int,3,5)
printSlice(numbers)
}
func printSlice(x []int){
fmt.Printf("len=%d cap=%d slice=%v\n",len(x),cap(x),x)
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
len = 3 cap = 5 slice = [0 0 0]
ไม่มีชิ้น
หากมีการประกาศสไลซ์โดยไม่มีอินพุตตามค่าเริ่มต้นระบบจะเริ่มต้นเป็นศูนย์ ความยาวและความจุเป็นศูนย์ ตัวอย่างเช่น -
package main
import "fmt"
func main() {
var numbers []int
printSlice(numbers)
if(numbers == nil){
fmt.Printf("slice is nil")
}
}
func printSlice(x []int){
fmt.Printf("len = %d cap = %d slice = %v\n", len(x), cap(x),x)
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
len = 0 cap = 0 slice = []
slice is nil
Subslicing
Slice อนุญาตให้ระบุขอบเขตล่างและขอบเขตบนเพื่อรับส่วนย่อยของมันโดยใช้[lower-bound:upper-bound]. ตัวอย่างเช่น -
package main
import "fmt"
func main() {
/* create a slice */
numbers := []int{0,1,2,3,4,5,6,7,8}
printSlice(numbers)
/* print the original slice */
fmt.Println("numbers ==", numbers)
/* print the sub slice starting from index 1(included) to index 4(excluded)*/
fmt.Println("numbers[1:4] ==", numbers[1:4])
/* missing lower bound implies 0*/
fmt.Println("numbers[:3] ==", numbers[:3])
/* missing upper bound implies len(s)*/
fmt.Println("numbers[4:] ==", numbers[4:])
numbers1 := make([]int,0,5)
printSlice(numbers1)
/* print the sub slice starting from index 0(included) to index 2(excluded) */
number2 := numbers[:2]
printSlice(number2)
/* print the sub slice starting from index 2(included) to index 5(excluded) */
number3 := numbers[2:5]
printSlice(number3)
}
func printSlice(x []int){
fmt.Printf("len = %d cap = %d slice = %v\n", len(x), cap(x),x)
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
len = 9 cap = 9 slice = [0 1 2 3 4 5 6 7 8]
numbers == [0 1 2 3 4 5 6 7 8]
numbers[1:4] == [1 2 3]
numbers[:3] == [0 1 2]
numbers[4:] == [4 5 6 7 8]
len = 0 cap = 5 slice = []
len = 2 cap = 9 slice = [0 1]
len = 3 cap = 7 slice = [2 3 4]
ผนวก () และคัดลอก () ฟังก์ชัน
หนึ่งสามารถเพิ่มความจุของชิ้นโดยใช้ไฟล์ append()ฟังก์ชัน การใช้copy()ฟังก์ชันเนื้อหาของชิ้นส่วนต้นทางจะถูกคัดลอกไปยังชิ้นส่วนปลายทาง ตัวอย่างเช่น -
package main
import "fmt"
func main() {
var numbers []int
printSlice(numbers)
/* append allows nil slice */
numbers = append(numbers, 0)
printSlice(numbers)
/* add one element to slice*/
numbers = append(numbers, 1)
printSlice(numbers)
/* add more than one element at a time*/
numbers = append(numbers, 2,3,4)
printSlice(numbers)
/* create a slice numbers1 with double the capacity of earlier slice*/
numbers1 := make([]int, len(numbers), (cap(numbers))*2)
/* copy content of numbers to numbers1 */
copy(numbers1,numbers)
printSlice(numbers1)
}
func printSlice(x []int){
fmt.Printf("len=%d cap=%d slice=%v\n",len(x),cap(x),x)
}
เมื่อโค้ดด้านบนถูกคอมไพล์และเรียกใช้งานจะให้ผลลัพธ์ดังนี้ -
len = 0 cap = 0 slice = []
len = 1 cap = 2 slice = [0]
len = 2 cap = 2 slice = [0 1]
len = 5 cap = 8 slice = [0 1 2 3 4]
len = 5 cap = 16 slice = [0 1 2 3 4]