función ring.Len() en Golang con ejemplos

La función ring.Len() en Golang calcula el número de componentes (elementos) en el anillo (una lista circular) r. Se ejecuta en el tiempo correspondiente al número de componentes (elementos).

Sintaxis:

func (r *Ring) Len() int

Devuelve Entero.

Ejemplo 1:

// Golang program to illustrate
// the ring.Len() function
package main
  
import (
    "container/ring"
    "fmt"
)
// Main function
func main() {
  
    // Creating a new ring of size 3
    r := ring.New(3)
  
    // Print out its length
    fmt.Println(r.Len())
  
}

Producción:

3

Ejemplo 2:

// Golang program to illustrate
// the ring.Len() function
package main
  
import (
    "container/ring"
    "fmt"
)
// Main function
func main() {
    // Creating a new ring of size 10
    r := ring.New(10)
  
    // Print out its length
    fmt.Println(r.Len())
  
}

Producción:

10

Publicación traducida automáticamente

Artículo escrito por vipinyadav15799 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *