在R中实例化对象 - 新建与结构

时间:2012-12-30 22:52:14

标签: r class instantiation

我在R中使用

实例化了类
x <- structure(1, class = "foo")

来源:https://github.com/hadley/devtools/wiki/S3

以及

x <- new("foo", a = 1)

哪个更合适,使用new还是结构?

1 个答案:

答案 0 :(得分:0)

应该知道,Hadley也有关于他的S4指南的部分,他说要用新的实例化

https://github.com/hadley/devtools/wiki/S4