PHP - Ds\Stack::count() 函数



PHP 的 Ds\Stack::count() 函数用于计算当前栈中存在的元素数量。如果此函数在空 ([]) 实例上调用,它将返回 0,您可以使用 isEmpty() 函数验证栈是否为空。

语法

以下是 PHP Ds\Stack::count() 函数的语法 -

public Ds\Stack::count(): int

参数

此函数不接受任何参数。

返回值

此函数返回栈中的值的数量。

示例 1

以下是 PHP Ds\Stack::count() 函数的基本示例 -

<?php  
   $stack = new \Ds\Stack([2, 4, 6, 8, 10]);
   echo "The stack elements are: \n";
   print_r($stack);
   echo "The number of elements present in a stack: ";
   #using count() function
   print_r($stack->count());
?>

输出

以上程序产生以下输出 -

The stack elements are:
Ds\Stack Object
(
    [0] => 10
    [1] => 8
    [2] => 6
    [3] => 4
    [4] => 2
)
The number of elements present in a stack: 5

示例 2

以下是 PHP Ds\Stack::count() 函数的另一个示例。我们使用此函数查找此 (["Tutorials", "Point", "India"]) 栈中存在的元素数量 -

<?php  
   $stack = new \Ds\Stack(["Tutorials", "Point", "India"]);
   echo "The stack elements are: \n";   
   print_r($stack);
   echo "The number of elements present in a stack: "; 
   #using count() function
   print_r($stack->count());   
?>

输出

执行上述程序后,它将显示以下输出 -

The stack elements are:
Ds\Stack Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
The number of elements present in a stack: 3

示例 3

如果当前栈实例为空 ([]),则 count() 函数返回 0

<?php  
   $stack = new \Ds\Stack([]);
   echo "The stack elements are: \n";   
   print_r($stack);
   echo "The number of elements present in a stack: "; 
   #using count() function
   print_r($stack->count()); 
?>

输出

执行上述程序后,它将生成以下输出 -

The stack elements are:
Ds\Stack Object
(
)
The number of elements present in a stack: 0
php_function_reference.htm
广告