Ds\Queue::pop() 函数可以删除并返回队列前面的值。
用法
public mixed Ds\Queue::pop( void )
Ds\Queue::pop() 函数没有任何参数。
Ds\Queue::pop() 函数可以返回位于队列前面的删除值。如果为空,此函数可以抛出 UnderflowException。
示例
<?php
$queue = new \Ds\Queue();
$queue->push("Tutorials");
$queue->push("Point");
$queue->push("India");
echo "The initial queue is:\n";
print_r($queue);
echo "\n The popped element is:";
print_r($queue->pop());
echo "\n The final queue is:\n";
print_r($queue);
?>
相关用法
- PHP Ds\Queue::push()用法及代码示例
- PHP Ds\Queue::peek()用法及代码示例
- PHP Ds\Queue::allocate()用法及代码示例
- PHP Ds\Queue::capacity()用法及代码示例
- PHP Ds\Queue pop()用法及代码示例
- PHP Ds\Queue push()用法及代码示例
- PHP Ds\Queue clear()用法及代码示例
- PHP Ds\Queue capacity()用法及代码示例
- PHP Ds\Queue count()用法及代码示例
- PHP Ds\Queue copy()用法及代码示例
- PHP Ds\Queue isEmpty()用法及代码示例
- PHP Ds\Queue allocate()用法及代码示例
- PHP Ds\Queue toArray()用法及代码示例
- PHP Ds\Queue peek()用法及代码示例
注:本文由纯净天空筛选整理自 PHP - Ds\Queue::pop() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。