略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SplQueue::__construct

2024-05-10

SplQueue::__construct

(PHP 5 >= 5.3.0, PHP 7)

SplQueue::__constructConstructs a new queue implemented using a doubly linked list

说明

public SplQueue::__construct()

This constructs a new empty queue.

注意:

This method automatically sets the iterator mode to SplDoublyLinkedList::IT_MODE_FIFO.

参数

此函数没有参数。

范例

示例 #1 SplQueue::__construct() example

<?php
$q 
= new SplQueue();

$q[] = 1;
$q[] = 2;
$q[] = 3;

foreach (
$q as $elem)  {
 echo 
$elem."\n";
}
?>

以上例程会输出:

1
2
3

示例 #2 Efficiently handling tasks with SplQueue

<?php
$q 
= new SplQueue();
$q->setIteratorMode(SplQueue::IT_MODE_DELETE);

// ... enqueue some tasks on the queue ...

// process them
foreach ($q as $task) {
    
// ... process $task ...

    // add new tasks on the queue
    
$q[] = $newTask;
    
// ...
}
?>
add a noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/splqueue.construct.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3