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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。