PHP - Ds Deque::copy() 函数



PHP 的 Ds\Deque::copy() 函数用于检索当前双端队列的浅拷贝。集合(或双端队列)的浅拷贝是指属性与从中创建拷贝的源对象的属性共享相同引用的拷贝。

您可以在任何集合(如集合、栈、双端队列等)上调用此函数。

语法

以下是 PHP Ds\Deque::copy() 函数的语法:

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

参数

此函数不接受任何参数。

返回值

此函数返回当前双端队列的浅拷贝。

示例 1

以下是 PHP Ds\Deque::copy() 函数的基本示例:

<?php
   $deque = new \Ds\Deque([10, 20, 30, 40, 50]);
   echo "The original deque: \n";
   print_r($deque);
   echo "The shallow copy of a deque: \n";
   print_r($deque->copy());
?>

输出

以上程序显示以下输出:

The original deque:
Ds\Deque Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)
The shallow copy of a deque:
Ds\Deque Object
(
    [0] => 10
    [1] => 20
    [2] => 30
    [3] => 40
    [4] => 50
)

示例 2

以下是 PHP Ds\Deque::copy() 函数的另一个示例。我们使用此函数来检索此双端队列(["Tutorials", "Point", "India"])的浅拷贝:

<?php
   $deque = new \Ds\Deque(["Tutorials", "Point", "India"]);
   echo "The original deque: \n";
   print_r($deque);
   echo "The shallow copy of a deque: \n";
   print_r($deque->copy());
?>

输出

执行以上程序后,将生成以下输出:

The original deque:
Ds\Deque Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
The shallow copy of a deque:
Ds\Deque Object
(
    [0] => Tutorials
    [1] => Point
    [2] => India
)
php_function_reference.htm
广告