Ds\Stack::count() 函数可用于计算堆栈中存在的元素数量。
用法
int Ds\Stack::count( void )
Ds\Stack::count() 函数没有任何参数。
Ds\Stack::count() 函数可以返回堆栈中值的数量。
示例1
<?php
$stack = new \Ds\Stack([1, 4, 5, 7, 9, 10]);
var_dump($stack);
echo "The number of elements present in a stack:";
print_r($stack->count());
?>
示例2
<?php
$stack = new \Ds\Stack(["Tutorials", "Point", "India"]);
print_r($stack);
echo "The number of elements present in a stack:";
var_dump($stack->count());
?>
相关用法
- PHP Ds\Stack count()用法及代码示例
- PHP Ds\Stack copy()用法及代码示例
- PHP Ds\Stack allocate()用法及代码示例
- PHP Ds\Stack isEmpty()用法及代码示例
- PHP Ds\Stack pop()用法及代码示例
- PHP Ds\Stack __construct()用法及代码示例
- PHP Ds\Stack push()用法及代码示例
- PHP Ds\Stack peek()用法及代码示例
- PHP Ds\Stack clear()用法及代码示例
- PHP Ds\Stack capacity()用法及代码示例
- PHP Ds\Stack toArray()用法及代码示例
- PHP Ds\Sequence remove()用法及代码示例
- PHP Ds\Set capacity()用法及代码示例
- PHP Ds\Set __construct()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds\Stack::count() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。