La función Ds\Queue::capacity() en PHP se usa para verificar la capacidad actual de una instancia de Queue.
Sintaxis :
int public Ds\Queue::capacity ( void )
Parámetros : Esta función no acepta ningún parámetro.
Valor devuelto : esta función devuelve la capacidad actual de la instancia de Queue.
Los siguientes programas ilustran la función Ds\Queue::capacity() en PHP:
Programa 1:
PHP
<?php // Declare new Queue $q = new \Ds\Queue(); // Use capacity() function // to check the current capacity var_dump($q->capacity()); ?>
Producción:
int(8)
Programa 2:
PHP
<?php // Declare new Queue $q = new \Ds\Queue(); echo("Current Capacity is: "); // Use capacity() function // to check the current capacity var_dump($q->capacity()); echo("Current Capacity is: "); // Use allocate() function to // allocate capacity $q->allocate(5); // Display the allocated vector // capacity var_dump($q->capacity()); // Use allocate() function to // allocate capacity $q->allocate(120); // Display the allocated vector // capacity var_dump($q->capacity()); ?>
Producción:
Current Capacity is: int(8) Current Capacity is: int(8) int(128)
Referencia : http://php.net/manual/en/ds-queue.capacity.php