当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds\Deque allocate()用法及代码示例


Ds \ Deque::allocate()函数是PHP中的内置函数,用于根据参数指定分配内存。如果未定义参数,则将创建默认大小的双端队列。

用法:

public Ds\Deque::allocate( $capacity ):void

参数:该函数接受单个参数$capacity,该参数保存要为其分配空间的值的数量。


返回值:该函数不返回任何值。

以下示例程序旨在说明PHP中的Ds \ Deque::allocate()函数:

程序1:

<?php 
  
// Declare Deque of default size 
$deq = new \Ds\Deque(); 
  
// Display the capacity of Deque 
var_dump($deq->capacity()); 
  
  
// Allocating space for 50 values 
// to the Deque 
$deq->allocate(50); 
  
// Display the capacity of Deque 
var_dump($deq->capacity()); 
  
?> 
输出:
int(8)
int(64)

程序2:

<?php 
   
// Declare Deque of default size 
$deck = new \Ds\Deque(); 
  
// Display the Deque capacity 
var_dump($deck->capacity()); 
   
// Allocating space for 50 values 
// to the Deque 
$deck->allocate(50); 
  
// Display the Deque capacity 
var_dump($deck->capacity()); 
   
// Allocating space for 60 values 
// to the Deque 
$deck->allocate(60); 
  
// Display the Deque capacity 
var_dump($deck->capacity()); 
   
?>
输出:
int(8)
int(64)
int(64)

参考: http://php.net/manual/en/ds-deque.allocate.php



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 PHP | Ds\Deque allocate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。