📜  PHP | Ds\Deque capacity()函数

📅  最后修改于: 2022-05-13 01:56:28.009000             🧑  作者: Mango

PHP | Ds\Deque capacity()函数

Ds\Deque::capacity()函数是PHP中的一个内置函数,用于获取 Deque 的当前容量。

句法:

public Ds\Deque::capacity( void ) : int

参数:此函数不接受任何参数。

返回值:该函数返回 Deque 的当前容量。

下面的程序说明了PHP中的Ds\Deque::capacity()函数:

方案一:

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)

方案二:

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。 PHP