This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
prpl:copy_vs_deep_copy [2017/08/30 19:08] – created kajacx | prpl:copy_vs_deep_copy [2025/02/14 14:57] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
<- [[.: | <- [[.: | ||
- | ===== CopyList vs DeepCopyList vs "just passing the list" | + | ===== CopyList vs DeepCopyList vs dup / just passing the list ===== |
When you have a list in a variable for example, and you need to use the list in a function for example, you might not know whether to just pass the list into the funtion (< | When you have a list in a variable for example, and you need to use the list in a function for example, you might not know whether to just pass the list into the funtion (< | ||
Line 14: | Line 14: | ||
=== Sharing list in multiple variables (or on stack) === | === Sharing list in multiple variables (or on stack) === | ||
Let's start by a quick example with 3 lists and 4 variables: (I have named the lists ListA,B,C so that we can keep track of which variable has which list stored in it) | Let's start by a quick example with 3 lists and 4 variables: (I have named the lists ListA,B,C so that we can keep track of which variable has which list stored in it) | ||
- | < | + | < |
" | " | ||
" | " | ||
Line 28: | Line 28: | ||
If we change list1, list3 will be change as well, because it is the same list, just stored inside 2 different variables: | If we change list1, list3 will be change as well, because it is the same list, just stored inside 2 different variables: | ||
- | < | + | < |
<-list1 2 " | <-list1 2 " | ||
<-list1 Trace # [" | <-list1 Trace # [" | ||
Line 37: | Line 37: | ||
However, if we change //which// list is stored inside the list1 variable, list3 will remain the same: | However, if we change //which// list is stored inside the list1 variable, list3 will remain the same: | ||
- | < | + | < |
<-list4 -> | <-list4 -> | ||
<-list1 Trace # [" | <-list1 Trace # [" | ||
Line 50: | Line 50: | ||
So, what if we didn't want 2 variables sharing the same list, but instead wanted to copy the list from one variable into another so that we can then change eighter list without affecting the other one? Well, that's //exactly// what CopyList is for. It creates a new list, but with the same contents. | So, what if we didn't want 2 variables sharing the same list, but instead wanted to copy the list from one variable into another so that we can then change eighter list without affecting the other one? Well, that's //exactly// what CopyList is for. It creates a new list, but with the same contents. | ||
- | < | + | < |
" | " | ||
<-list1 CopyList ->list2 | <-list1 CopyList ->list2 |