📜  PHP Ds\Queue count()函数

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

PHP Ds\Queue count()函数

PHP的Ds\Queue::count()函数用于获取 Queue 实例中存在的元素计数。

句法:

int public Ds\Queue::count ( void )

参数:该函数不接受任何参数。

返回值:此函数计算 Queue 实例中存在的元素数并返回计数。

下面的程序说明了PHP的Ds\Queue::count()函数:



方案一:

push("One");
$q->push("Two");
$q->push("Three");
  
// Count the number of elements 
// in this Queue 
print_r($q->count());
  
?> 
输出:
3

方案二:

push("Geeks");
$q->push("for");
$q->push("Geeks");
  
// Count the number of elements 
// in this Queue 
print_r($q->count());
  
?> 
输出:
3

参考文献:http:// PHP.NET /手动/ EN / DS-priorityqueue.count。 PHP