Slice is a variable-length sequence which stores elements of a similar type, you are not allowed to store different type of elements in the same slice. It is just like an array having an index value and length, but the size of the slice is resized they are not in fixed-size just like an array. Internally, slice and an array are connected with each other, a slice is a reference to an underlying array. It is allowed to store duplicate elements in the slice. The first index position in a slice is always 0 and the last one will be (length of slice – 1).
Multi-dimensional slice is just like the multidimensional array, except that slice does not contain the size.
Example:
package main
import "fmt"
func main() {
s1 := [][] int {
{1, 2},
{3, 4},
{5, 6},
{7, 8},
}
fmt.Println( "Slice 1 : " , s1)
s2 := [][]string{
[]string{ "str1" , "str2" },
[]string{ "str3" , "str4" },
[]string{ "str5" , "str6" },
}
fmt.Println( "Slice 2 : " , s2)
fmt.Println( "MultiDimensional Slice s2:" )
for i := 0; i < len(s2); i++ {
fmt.Println(s2[i])
}
fmt.Println( "Slice s2 Like Matrix:" )
n := len(s2)
m := len(s2[0])
for i := 0; i < n; i++ {
for j := 0; j < m; j++ {
fmt.Print(s2[i][j] + " " )
}
fmt.Print( "\n" )
}
}
|
Output:
Slice 1 : [[1 2] [3 4] [5 6] [7 8]]
Slice 2 : [[str1 str2] [str3 str4] [str5 str6]]
MultiDimensional Slice s2:
[str1 str2]
[str3 str4]
[str5 str6]
Slice s2 Like Matrix:
str1 str2
str3 str4
str5 str6
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!