PHP | Ds\堆栈容量()函数
Ds\Stack::capacity()函数是PHP中的一个内置函数,用于返回堆栈的当前容量。
句法:
int Ds\Stack::capacity( void )
参数:此函数不接受任何参数。
返回值:此函数返回堆栈的当前容量。
下面的程序说明了PHP中的 Ds\Stack::capacity()函数:
方案一:
capacity());
?>
输出:
int(8)
方案二:
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());
?>
输出:
Current Capacity is: int(8)
Current Capacity is: int(8)
Current Capacity is: int(120)
参考: https://www. PHP.net/manual/en/ds-stack.capacity。 PHP