Ds\Vector::allocate() 函數可以為所需的容量分配足夠的內存。
用法
public void Ds\Vector::allocate( int $capacity )
Ds\Vector::allocate() 函數可以確保為所需的容量分配足夠的內存。它可以消除在添加值時重新分配內部的需要。
Ds\Vector::allocate() 函數不返回任何值。
例子1
<?php
$vector = new \Ds\Vector();
echo("Allocated memory:");
var_dump($vector->capacity());
echo("Allocated memory:");
$vector->allocate(50);
var_dump($vector->capacity());
?>
例子2
<?php
$vector = new \Ds\Vector();
echo("Allocated momory:");
var_dump($vector->capacity());
echo("Allocated memory:");
$vector->allocate(7);
var_dump($vector->capacity());
$vector->allocate(100);
var_dump($vector->capacity());
?>
相關用法
- PHP Ds Vector apply()用法及代碼示例
- PHP Ds Vector get()用法及代碼示例
- PHP Ds Vector count()用法及代碼示例
- PHP Ds Vector sum()用法及代碼示例
- PHP Ds Vector sorted()用法及代碼示例
- PHP Ds Vector set()用法及代碼示例
- PHP Ds Vector unshift()用法及代碼示例
- PHP Ds Vector rotate()用法及代碼示例
- PHP Ds Vector last()用法及代碼示例
- PHP Ds Vector push()用法及代碼示例
- PHP Ds Vector first()用法及代碼示例
- PHP Ds Vector jsonSerialize()用法及代碼示例
- PHP Ds Vector insert()用法及代碼示例
- PHP Ds Vector construct()用法及代碼示例
- PHP Ds Vector contains()用法及代碼示例
- PHP Ds Vector toArray()用法及代碼示例
- PHP Ds Vector merge()用法及代碼示例
- PHP Ds Vector join()用法及代碼示例
- PHP Ds Vector copy()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP - Ds Vector allocate() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。