Returns a shallow copy of the deque

Ds\Deque::copy

(PECL ds >= 1.0.0)

Ds\Deque::copyReturns a shallow copy of the deque

說明

public Ds\Deque::copy(): Ds\Deque

Returns a shallow copy of the deque.

參數

此函式沒有參數。

返回值

A shallow copy of the deque.

範例

示例 #1 Ds\Deque::copy() example

<?php
$a 
= new \Ds\Deque([123]);
$b $a->copy();

$b->push(4);

print_r($a);
print_r($b);
?>

以上例程的輸出類似於:

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

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *