Ds \ Deque::capacity()函數是PHP中的內置函數,用於獲取Deque的當前容量。
用法:
public Ds\Deque::capacity( void ):int
參數:該函數不接受任何參數。
返回值:此函數返回雙端隊列的當前容量。
以下示例程序旨在說明PHP中的Ds \ Deque::capacity()函數:
程序1:
<?php
// Allocating deque of default size
$deck = new \Ds\Deque();
echo("Default size of Deque:");
// Display the current capacity of the deque
var_dump($deck->capacity());
// Allocating space for 50 values to the deque
$deck->allocate(50);
echo("Allocated size of Deque:");
// Display the current capacity of the deque
var_dump($deck->capacity());
?>
輸出:
Default size of Deque:int(8) Allocated size of Deque:int(64)
程序2:
<?php
// Declare Deque
$deck = new \Ds\Deque([1, 2, 3, 4, 5, 6]);
echo("Elements of Deque\n");
// Display the Deque elements
var_dump($deck);
echo("\nCapacity of Deque:");
// Display the capacity of Deque
var_dump($deck->capacity());
?>
輸出:
Elements of Deque object(Ds\Deque)#1 (6) { [0]=> int(1) [1]=> int(2) [2]=> int(3) [3]=> int(4) [4]=> int(5) [5]=> int(6) } Capacity of Deque:int(8)
參考: http://php.net/manual/en/ds-deque.capacity.php
相關用法
- PHP Ds\Map capacity()用法及代碼示例
- PHP Ds\Set capacity()用法及代碼示例
- PHP Ds\Queue capacity()用法及代碼示例
- PHP Ds\Vector capacity()用法及代碼示例
- PHP Ds\Stack capacity()用法及代碼示例
- PHP Ds\PriorityQueue capacity()用法及代碼示例
- PHP Ds\Sequence capacity()用法及代碼示例
- p5.js hue()用法及代碼示例
- p5.js nf()用法及代碼示例
- PHP ord()用法及代碼示例
- CSS hsl()用法及代碼示例
- d3.js d3.hsl()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 PHP | Ds\Deque capacity() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。