PHP - Ds Vector::capacity() 函数



PHP 的 Ds\Vector::capacity() 函数用于检索向量的当前容量。向量的容量是指向量可以占据的内存或元素数量。

Ds\Vector 类提供了另一个名为 allocate() 的内置函数。使用此函数,您可以为当前向量分配新的容量。

语法

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

public int Ds\Vector::capacity( void )

参数

此函数不接受任何参数。

返回值

此函数返回向量的当前容量。

示例 1

以下是 PHP Ds\Vector::capacity() 函数的基本示例:

<?php 
   $vector = new \Ds\Vector([1, 2, 3, 4, 5]);
   echo "The vector elements are: \n";
   print_r($vector);
   echo "The current capacity of a vector: ";
   var_dump($vector->capacity());	 
?>

输出

以上程序产生以下输出:

The vector elements are:
Ds\Vector Object
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)
The current capacity of a vector: int(8)

示例 2

以下是 PHP Ds\Vector::capacity() 函数的另一个示例。我们使用此函数在分配此向量 (["Tutorials", "Point", "India"]) 的新容量之前和之后检索容量:

<?php 
   $vector = new \Ds\Vector(["Tutorials", "Point", "India"]);
   echo "The vector elements are: \n";
   print_r($vector);
   echo "The initial capacity of a vector: ";
   print_r($vector->capacity());
   echo "\nAfter allocating new capacity is: ";
   $vector->allocate(64);
   print_r($vector->capacity());
?> 

输出

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

The vector elements are:
Ds\Vector Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
The initial capacity of a vector: 8
After allocating new capacity is: 64

示例 3

在下面的示例中,我们使用 capacity() 函数来检索空 ([]) 向量的容量:

<?php 
   $vector = new \Ds\Vector([]);
   echo "The vector elements are: \n";
   print_r($vector);
   echo "The capacity of a vector: ";
   print_r($vector->capacity());
?> 

输出

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

The vector elements are:
Ds\Vector Object
(
)
The capacity of a vector: 8
php_function_reference.htm
广告