PHP中的Ds \ Queue::copy()函数用于创建特定Queue实例的浅拷贝。此函数不会影响现有的Queue实例,它只是创建Queue的浅拷贝并返回它。
用法:
Ds\Queue public Ds\Queue::copy ( void )
参数:该函数不接受任何参数。
返回值:此函数创建现有Queue实例的浅拷贝并返回它。
以下示例程序旨在说明PHP中的Ds \ Queue::copy()函数:
程序1:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("One");
$q->push("Two");
$q->push("Three");
// Create copy of this Queue
// instance and print it
print_r($q->copy());
?>
输出:
Ds\Queue Object ( [0] => One [1] => Two [2] => Three )
程序2:
<?php
// Declare new Queue
$q = new \Ds\Queue();
// Add elements to the Queue
$q->push("Geeks");
$q->push("for");
$q->push("Geeks");
// Create copy of this Queue
// instance and print it
print_r($q->copy());
?>
输出:
Ds\Queue Object ( [0] => Geeks [1] => for [2] => Geeks )
参考:http://php.net/manual/en/ds-priorityqueue.copy.php
相关用法
- PHP Ds\Map copy()用法及代码示例
- PHP Ds\Set copy()用法及代码示例
- PHP copy( )用法及代码示例
- PHP Ds\Collection copy()用法及代码示例
- PHP Ds\Deque copy()用法及代码示例
- PHP Ds\PriorityQueue copy()用法及代码示例
- PHP Ds\Pair copy()用法及代码示例
- PHP Ds\Stack copy()用法及代码示例
- PHP Ds\Vector copy()用法及代码示例
- PHP exp()用法及代码示例
- PHP sin( )用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 PHP Ds\Queue copy() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。