PHP | Función Ds\\Capacidad de pila()

La función Ds\Stack::capacity() es una función incorporada en PHP que se utiliza para devolver la capacidad actual de la pila.

Sintaxis:

int Ds\Stack::capacity( void )

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

Valor devuelto: esta función devuelve la capacidad actual de la pila.

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

Programa 1:

<?php 
  
// Declare new Stack 
$stack = new \Ds\Stack(); 
  
// Use capacity() function to check
// the current capacity 
var_dump($stack->capacity()); 
  
?>
Producción:

int(8)

Programa 2:

<?php 
  
// Declare new Stack 
$stack = new \Ds\Stack(); 
  
echo("Current Capacity is: "); 
  
// Use capacity() function 
// to check the current capacity 
var_dump($stack->capacity()); 
  
echo("Current Capacity is: "); 
  
// Use allocate() function to 
// allocate capacity 
$stack->allocate(5); 
  
// Display the allocated vector 
// capacity 
var_dump($stack->capacity()); 
  
echo("Current Capacity is: ");
  
// Use allocate() function to 
// allocate capacity 
$stack->allocate(120); 
  
// Display the allocated vector 
// capacity 
var_dump($stack->capacity()); 
  
?> 
Producción:

Current Capacity is: int(8)
Current Capacity is: int(8)
Current Capacity is: int(120)

Referencia: https://www.php.net/manual/en/ds-stack.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 *