obj_addr() gives the address of the value that x points to;
obj_addrs() gives the address of the components the list,
environment, and character vector x point to.
obj_addr(x)
obj_addrs(x)obj_addr() has been written in such away that it avoids taking
references to an object.
# R creates copies lazily
x <- 1:10
y <- x
obj_addr(x) == obj_addr(y)
#> [1] TRUE
y[1] <- 2L
obj_addr(x) == obj_addr(y)
#> [1] FALSE
y <- runif(10)
obj_addr(y)
#> [1] "0x56ba60906f38"
z <- list(y, y)
obj_addrs(z)
#> [1] "0x56ba60906f38" "0x56ba60906f38"
y[2] <- 1.0
obj_addrs(z)
#> [1] "0x56ba60906f38" "0x56ba60906f38"
obj_addr(y)
#> [1] "0x56ba60f01f48"
# The address of an object is different every time you create it:
obj_addr(1:10)
#> [1] "0x56ba5eccb140"
obj_addr(1:10)
#> [1] "0x56ba5eba32e8"
obj_addr(1:10)
#> [1] "0x56ba5eb19a10"