PHP中的Ds \ PriorityQueue::copy()函數用於創建特定PriorityQueue實例的淺拷貝。此函數不會影響現有的PriorityQueue實例,它隻是創建PriorityQueue的淺拷貝並返回它。
用法:
Ds\PriorityQueue public Ds\PriorityQueue::copy ( void )
參數:該函數不接受任何參數。
返回值:此函數創建現有PriorityQueue實例的淺拷貝並返回它。
以下示例程序旨在說明PHP中的Ds \ PriorityQueue::copy()函數:
程序1:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("One", 1);
$pq->push("Two", 2);
$pq->push("Three", 3);
// Create copy of this PriorityQueue
// instance and print it
print_r($pq->copy());
?>
輸出:
Ds\PriorityQueue Object ( [0] => Three [1] => Two [2] => One )
程序2:
<?php
// Declare new PriorityQueue
$pq = new \Ds\PriorityQueue();
// Add elements to the PriorityQueue
$pq->push("Geeks", 1);
$pq->push("for", 2);
$pq->push("Geeks", 3);
// Create copy of this PriorityQueue
// instance and print it
print_r($pq->copy());
?>
輸出:
Ds\PriorityQueue 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\Vector copy()用法及代碼示例
- PHP Ds\Queue copy()用法及代碼示例
- PHP Ds\Stack copy()用法及代碼示例
- PHP Ds\Pair copy()用法及代碼示例
- PHP Ds\Deque copy()用法及代碼示例
- PHP exp()用法及代碼示例
- PHP sin( )用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 PHP Ds\PriorityQueue copy() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。