📜  PHP | Ds\Deque allocate()函数

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

PHP | Ds\Deque allocate()函数

Ds\Deque::allocate()函数是PHP中的一个内置函数,用于按照参数中指定的方式分配内存。如果未定义参数,则将创建默认大小的 Deque。

句法:

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

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

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

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

方案一:

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)

方案二:

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