这让我很糟糕。您可以缩写列表名称吗?我以前从未注意到它,我完全被搞砸了一天。有人可以解释这里发生了什么以及为什么它可能比它更有用吗?为什么它在底部这样不一致?如果我可以把它关掉?
> wtf <- list(whatisthe=1, pointofthis=2)
> wtf$whatisthe
[1] 1
> wtf$what
[1] 1
> wtf <- list(whatisthe=1, whatisthepointofthis=2)
> wtf$whatisthepointofthis
[1] 2
> wtf$whatisthep
[1] 2
> wtf$whatisthe
[1] 1
> wtf$what
NULL