按地址/指针访问对象

时间:2015-04-25 21:30:41

标签: r data.table

我可以通过其内存地址或指针访问当前R会话中创建的data.table对象吗?

library(data.table)

DT <- data.table(a = 1:10, b = letters[1:10])
address(DT)
# [1] "0x6bf9b90"
attr(DT,".internal.selfref",TRUE)
# <pointer: 0x2655cc8>

1 个答案:

答案 0 :(得分:4)

这有点愚蠢的做法(与你在C ++中如何投射指针相比),但你可以这样做:

# recursively iterate over environments
find.by.address = function(addr, env = .GlobalEnv) {
  idx = which(sapply(ls(env), function(x) address(get(x, env = env))) == addr)
  if (length(idx) != 0)
    return (get(ls(env)[idx], env = env))

  # didn't find it, let's iterate over the other environments
  idx = which(sapply(ls(env), function(x) is.environment(get(x, env = env))))
  for (i in idx) {
    res = find.by.address(addr, get(ls(env)[i], env = env))
    if (res != "couldn't find it") return (res)
  }

  return ("couldn't find it")
}

DT = data.table(a = 1)
e = new.env()
e$DT = data.table(b = 2)
e$f = new.env()
e$f$DT = data.table(c = 2)

find.by.address(address(DT))
#   a
#1: 1
find.by.address(address(e$DT))
#   b
#1: 2
find.by.address(address(e$f$DT))
#   c
#1: 2
相关问题