PHP - Ds Sequence::capacity() 函数



PHP 的 Ds\Sequence::capacity() 函数用于检索序列的当前容量。“容量”指的是序列可以容纳的内存或元素数量。

PHP Ds\Sequence 类提供另一个名为 allocate() 的函数,用于为当前序列分配足够的容量。

语法

以下是 PHP Ds\Sequence::capacity() 函数的语法:

abstract public Ds\Sequence::capacity(): int

参数

此函数不接受任何参数。

返回值

此函数返回序列的当前容量。

示例 1

以下程序演示了 PHP Ds\Sequence::capacity() 函数的使用:

<?php 
   $seq = new \Ds\Vector([1, 2, 3]);
   echo "The sequence elements are: \n";
   print_r($seq);
   echo "The current capacity of a sequence is: ";
   #using capacity() function
   print_r($seq->capacity());
?>

输出

上述程序生成以下输出:

The sequence elements are:
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
)
The current capacity of a sequence is: 8

示例 2

以下是 PHP Ds\Sequence::capacity() 函数的另一个示例。我们使用此函数来检索此序列(["Tutorials", "Point", "India"]) 的当前容量:

<?php 
   $seq = new \Ds\Stack(["Tutorials", "Point", "India"]);
   echo "The sequence elements are: \n";
   print_r($seq);
   echo "The capacity before allocating: ";
   #using capacity() function
   print($seq->capacity());
   #using allocate() function
   $seq->allocate(32);
   echo "\nThe capacity after allocating: ";
   print($seq->capacity());
?>

输出

执行上述程序后,将显示以下输出:

The sequence elements are:
Ds\Stack Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
The capacity before allocating: 8
The capacity after allocating: 32
php_function_reference.htm
广告