當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP Ds\PriorityQueue allocate()用法及代碼示例


PHP中的Ds \ PriorityQueue::allocate()函數用於為PriorityQueue類實例分配內存。此函數為給定的PriorityQueue類實例的容量分配足夠的內存。

用法:

void public Ds\PriorityQueue::allocate ( int $capacity )

參數:該函數接受單個參數$capacity,該參數是一個整數值,表示需要為其分配容量的值的數量。


返回值:此方法不返回任何值。

以下示例程序旨在說明PHP中的Ds \ PriorityQueue::allocate()函數:

程序1:

<?php  
  
// Declare new PriorityQueue  
$pq = new \Ds\PriorityQueue();  
  
echo("Allocated Space is:");  
  
// Use capacity() function  
var_dump($pq->capacity());  
  
echo("Allocated space is:");  
  
// Use allocate() function to  
// allocate capacity  
$pq->allocate(50);  
  
// Display the allocated vector  
// capacity  
var_dump($pq->capacity());  
  
?> 
輸出:
Allocated Space is:int(8)
Allocated space is:int(64)

程序2:

<?php  
  
// Declare new PriorityQueue  
$pq = new \Ds\PriorityQueue();  
  
echo("Allocated Space is:");  
  
// Use capacity() function  
var_dump($pq->capacity());  
  
echo("Allocated space is:");  
  
// Use allocate() function to  
// allocate capacity  
$pq->allocate(5);  
  
// Display the allocated vector  
// capacity  
var_dump($pq->capacity());  
  
// Use allocate() function to  
// allocate capacity  
$pq->allocate(120);  
  
// Display the allocated vector  
// capacity  
var_dump($pq->capacity());  
  
?> 
輸出:
Allocated Space is:int(8)
Allocated space is:int(8)
int(128)

參考: http://php.net/manual/en/ds-priorityqueue.allocate.php



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue allocate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。