Tagged Questions
14
votes
4answers
7k views
How do I create a copy of an object in PHP?
It appears that in PHP objects are passed by reference. Even assignment operators do not appear to be creating a copy of the Object.
Here's a simple, contrived proof:
<?php
class A {
public ...
4
votes
2answers
1k views
How to copy a list in Scala
I want to shallow copy a list in Scala.
I wanted to do somehing like:
val myList = List("foo", "bar")
val myListCopy = myList.clone
But the clone method is protected.
0
votes
1answer
23 views
assign value of one actionscript component to another (shallow copy)
I have two label components in actionscript:
label1 and label2.
I want to make it so that when the value of label1.text changes, the value of label2.text automatically changes to the same value.