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


PHP Ds\Set capacity()用法及代碼示例


Ds \ Set::capacity()函數是PHP中的內置函數,用於返回集合的容量。

用法:

int public Ds\Set::capacity( void )

參數:該函數不接受任何參數。


返回值:此函數返回集合的當前容量。

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

程序1:

<?php  
  
// Declare an empty set  
$set = new \Ds\Set(); 
  
echo("Default size of Set:");  
  
// Display the current capacity 
var_dump($set->capacity());  
  
// Allocating space for 50 values 
$set->allocate(50);  
  
echo("Allocated size of Set:");  
  
// Display the current capacity 
var_dump($set->capacity());  
  
?> 
輸出:
Default size of Set:int(8)
Allocated size of Set:int(64)

程序2:

<?php  
  
// Declare a set 
$set = new \Ds\Set([1, 2, 3, 4, 5, 6]);  
  
echo("Elements of Set\n");  
  
// Display the Set elements  
var_dump($set);  
  
echo("\nCapacity of Set:");  
  
// Display the capacity of Set  
var_dump($set->capacity());  
  
?> 
輸出:
Elements of Set
object(Ds\Set)#1 (6) {
  [0]=>
  int(1)
  [1]=>
  int(2)
  [2]=>
  int(3)
  [3]=>
  int(4)
  [4]=>
  int(5)
  [5]=>
  int(6)
}

Capacity of Set:int(8)

參考: http://php.net/manual/en/ds-set.capacity.php



相關用法


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