PHP | Función Ds\\Establecer capacidad()

La función Ds\Set::capacity() es una función incorporada en PHP que se utiliza para devolver la capacidad del conjunto.

Sintaxis:

int public Ds\Set::capacity( void )

Parámetro: Esta función no acepta ningún parámetro.

Valor devuelto: esta función devuelve la capacidad actual del conjunto.

Los siguientes programas ilustran la función Ds\Set::capacity() en PHP:

Programa 1:

<?php 
  
// Declare an empty set 
$set = new \Ds\Set();
  
echo("Default size of Set: "); 
  
// Display the current capacity
var_dump($set->capacity()); 
  
// Allocating space for 50 values
$set->allocate(50); 
  
echo("Allocated size of Set: "); 
  
// Display the current capacity
var_dump($set->capacity()); 
  
?> 
Producción:

Default size of Set: int(8)
Allocated size of Set: int(64)

Programa 2:

<?php 
  
// Declare a set
$set = new \Ds\Set([1, 2, 3, 4, 5, 6]); 
  
echo("Elements of Set\n"); 
  
// Display the Set elements 
var_dump($set); 
  
echo("\nCapacity of Set: "); 
  
// Display the capacity of Set 
var_dump($set->capacity()); 
  
?> 
Producción:

Elements of Set
object(Ds\Set)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}

Capacity of Set: int(8)

Referencia: http://php.net/manual/en/ds-set.capacity.php

Publicación traducida automáticamente

Artículo escrito por jit_t 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 *