Ds\Queue::allocate() 函数可以为所需的容量分配足够的内存。
用法
public void Ds\Queue::allocate( int $capacity )
Ds\Queue::allocate() 函数以确保为所需容量分配足够的内存。它可以消除在添加值时重新分配内部的需要。
Ds\Queue::allocate() 函数不返回任何值。
示例
<?php
$queue = new \Ds\Queue();
echo("The allocated space is:");
var_dump($queue->capacity());
echo("The allocated space is:");
$queue->allocate(20);
var_dump($q->capacity());
$queue->allocate(100);
var_dump($q->capacity());
?>
相关用法
- PHP Ds\Queue::push()用法及代码示例
- PHP Ds\Queue::pop()用法及代码示例
- PHP Ds\Queue::peek()用法及代码示例
- PHP Ds\Queue::capacity()用法及代码示例
- PHP Ds\Queue pop()用法及代码示例
- PHP Ds\Queue push()用法及代码示例
- PHP Ds\Queue clear()用法及代码示例
- PHP Ds\Queue capacity()用法及代码示例
- PHP Ds\Queue count()用法及代码示例
- PHP Ds\Queue copy()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP Ds\Queue allocate()用法及代码示例
- PHP Ds\Queue toArray()用法及代码示例
- PHP Ds\Queue peek()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds\Queue::allocate() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。