PHP - Ds\Stack::copy() 函数



PHP 的Ds\Stack::copy()函数用于创建和检索堆栈的浅拷贝。

集合(或集)的浅拷贝是指属性与从中创建拷贝的源对象的属性共享相同引用的拷贝。

语法

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

public Ds\Stack::copy(): Ds\Stack

参数

此函数不接受任何参数。

返回值

此函数返回堆栈的浅拷贝。

示例 1

以下程序演示了 PHP Ds\Stack::copy() 函数的使用:

<?php 
   $stack = new \Ds\Stack([10, 20, 30, 40, 50]);
   echo "The stack elements are: \n";
   print_r($stack);
   echo "The shallow copy of the stack is: \n";
   #using copy() function
   print_r($stack->copy());
?>

输出

以上程序产生以下输出:

The stack elements are:
Ds\Stack Object
(
    [0] => 50
    [1] => 40
    [2] => 30
    [3] => 20
    [4] => 10
)
The shallow copy of the stack is:
Ds\Stack Object
(
    [0] => 50
    [1] => 40
    [2] => 30
    [3] => 20
    [4] => 10
)

示例 2

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

<?php 
   $stack = new \Ds\Stack([]);
   $stack->push("Tutorials", "Point", "India");
   echo "The stack elements are: \n";
   print_r($stack);
   echo "The shallow copy of the stack is: \n";
   #using copy() function
   print_r($stack->copy());
?>

输出

执行上述程序后,将显示以下输出:

The stack elements are:
Ds\Stack Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
The shallow copy of the stack is:
Ds\Stack Object
(
    [0] => India
    [1] => Point
    [2] => Tutorials
)
php_function_reference.htm
广告