当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP Ds Vector pop()用法及代码示例



Ds\Sequence::pop() 函数可以删除并返回最后一个值。

用法

abstract public mixed Ds\Sequence::pop( void )

Ds\Sequence::pop() 函数没有任何参数。此函数可以返回删除的最后一个值。

Ds\Sequence::pop() 函数可以在为空时抛出 UnderflowException。

例子1

<?php 
   $array1 = new \Ds\Vector([10, 20, 30, 40, 50]); 
  
   echo("Original vector elements \n"); 
   print_r($array1); 
   
   echo("The last element in vector:"); 
  
   var_dump($array1->pop()); 
  
   echo("\n After removing the last element \n"); 
   print_r($array1);
?>

例子2

<?php 
   $array1 = new \Ds\Vector(["Tutorials", "Point", "Tutiorix"]); 
     
   echo("Original vector elements \n"); 
   print_r($array1); 
  
   echo("The last element in vector:"); 
  
   var_dump($array1->pop()); 
  
   echo("\n After removing the last element \n"); 
   print_r($array1); 
?>

相关用法


注:本文由纯净天空筛选整理自 PHP - Ds Vector pop() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。