CakeFest 2024: The Official CakePHP Conference

Ds\PriorityQueue::capacity

(PECL ds >= 1.0.0)

Ds\PriorityQueue::capacityReturns the current capacity

说明

public Ds\PriorityQueue::capacity(): int

Returns the current capacity.

参数

此函数没有参数。

返回值

The current capacity.

示例

示例 #1 Ds\PriorityQueue::capacity() example

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

以上示例的输出类似于:

int(8)
add a note

User Contributed Notes

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