Ds\Vector::capacity

(PECL ds >= 1.0.0)

Ds\Vector::capacityReturns the current capacity.

설명

public int Ds\Vector::capacity ( void )

Returns the current capacity.

인수

이 함수는 인수가 없습니다.

반환값

The current capacity.

예제

Example #1 Ds\Vector::capacity() example

<?php
$vector 
= new \Ds\Vector();
var_dump($vector->capacity());

$vector->push(...range(150));
var_dump($vector->capacity());

$vector[] = "a";
var_dump($vector->capacity());
?>

위 예제의 출력 예시:

int(10)
int(50)
int(75)
add a note add a note

User Contributed Notes

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