Ds\PriorityQueue::__construct

(PECL ds >= 1.0.0)

Ds\PriorityQueue::__constructCreates a new instance.

설명

public Ds\PriorityQueue::__construct ( void )

Creates a new instance.

예제

Example #1 Ds\PriorityQueue::__construct() example

<?php
$queue 
= new \Ds\PriorityQueue();
var_dump($queue);
?>

위 예제의 출력 예시:

object(Ds\PriorityQueue)#1 (0) {
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top