Ds\PriorityQueue::__construct

(PECL ds >= 1.0.0)

Ds\PriorityQueue::__constructCreates a new instance

Açıklama

public Ds\PriorityQueue::__construct()

Creates a new instance.

Örnekler

Örnek 1 Ds\PriorityQueue::__construct() example

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

Yukarıdaki örnek şuna benzer bir çıktı üretir:

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

User Contributed Notes

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