在线文档教程
PHP
数据结构 | Data Structures

Ds\Set::clear

Ds\Set::clear

(PECL ds >= 1.0.0)

Ds \ Set :: clear - 删除所有值。

描述

public void Ds\Set::clear ( void )

删除集合中的所有值。

参数

该功能没有参数。

返回值

没有返回值。

示例

示例#1 Ds \ Set :: clear()示例

<?php $set = new \Ds\Set([1, 2, 3] print_r($set $set->clear( print_r($set ?>

上面的例子会输出如下信息:

Ds\Set Object ( [0] => 1 [1] => 2 [2] => 3 ) Ds\Set Object ( )

← Ds\Set::capacity

Ds\Set::__construct →