SplDoublyLinkedList
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

SplDoublyLinkedList::__construct

(No version information available, might be only in CVS)

SplDoublyLinkedList::__constructConstructs a new doubly linked list

说明

SplDoublyLinkedList::__construct ( void )

This constructs a new empty doubly linked list.

参数

This function has no parameters.

返回值

无返回值。

范例

Example #1 SplDoublyLinkedList::__construct() example

<?php
$dll 
= new SplDoublyLinkedList();

$dll->push(2);
$dll->push(3);
$dll->unshift(5);

var_dump($dll);
?>

上例将输出:

object(SplDoublyLinkedList)#1 (2) {
  ["flags":"SplDoublyLinkedList":private]=>
  int(0)
  ["dllist":"SplDoublyLinkedList":private]=>
  array(3) {
    [0]=>
    int(5)
    [1]=>
    int(2)
    [2]=>
    int(3)
  }
}


SplDoublyLinkedList
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程