El segmento de lenguaje de Go es más poderoso, flexible y conveniente que una array y es una estructura de datos liviana. El segmento es una secuencia de longitud variable que almacena elementos de un tipo similar, no está permitido almacenar diferentes tipos de elementos en el mismo segmento.
En el segmento de bytes Go, se le permite repetir los elementos del segmento un número específico de veces con la ayuda de la función Repetir() . Este método devuelve una nueva string que contiene los elementos repetidos del segmento. Se define en el paquete de bytes, por lo que debe importar el paquete de bytes en su programa para acceder a la función Repetir.
Sintaxis:
func Repeat(slice_1 []byte, count int) []byte
Aquí, slice_1 representa el segmento de bytes y el valor de conteo representa cuántas veces desea repetir los elementos del slice_1 dado .
Ejemplo:
// Go program to illustrate how to repeat // the elements of the slice of bytes package main import ( "bytes" "fmt" ) // Main function func main() { // Creating and initializing // the slice of bytes // Using shorthand declaration slice_1 := []byte{'G', 'E', 'E', 'K', 'S'} slice_2 := []byte{'A', 'P', 'P', 'L', 'E'} // Repeating the given slice // Using Repeat function res1 := bytes.Repeat(slice_1, 2) res2 := bytes.Repeat(slice_2, 4) res3 := bytes.Repeat([]byte("Geeks"), 5) // Display the results fmt.Printf("Result 1: %s", res1) fmt.Printf("\nResult 2: %s", res2) fmt.Printf("\nResult 3: %s", res3) }
Producción:
Result 1: GEEKSGEEKS Result 2: APPLEAPPLEAPPLEAPPLE Result 3: GeeksGeeksGeeksGeeksGeeks
Nota: Este método entrará en pánico si el valor del conteo es negativo o si el resultado de ( len(slice_1) * count ) se desborda.
Ejemplo:
// Go program to illustrate how to repeat // the elements of the slice of bytes package main import ( "bytes" "fmt" ) // Main function func main() { // Creating and initializing // the slice of bytes // Using shorthand declaration slice_1 := []byte{'G', 'E', 'E', 'K', 'S'} slice_2 := []byte{'A', 'P', 'P', 'L', 'E'} // Repeating the given slice // Using Repeat function // If we use a negative // value in the count // then this function will // panic because negative // values are not allowed to count res1 := bytes.Repeat(slice_1, -2) res2 := bytes.Repeat(slice_2, -4) res3 := bytes.Repeat([]byte("Geeks"), -5) // Display the results fmt.Printf("Result 1: %s", res1) fmt.Printf("\nResult 2: %s", res2) fmt.Printf("\nResult 3: %s", res3) }
Producción:
panic: bytes: negativo Recuento de repeticiones
goroutine 1 [en ejecución]:
bytes.Repeat(0x41a787, 0x5, 0x5, 0xfffffffe, 0x66ec0, 0x3f37, 0xf0a40, 0x40a0d0)
/usr/local/go/src/bytes/bytes.go:485 +0x1a0
main.main()
/ tmp/sandbox192154574/prog.go:22 +0x80
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA