标签: r class instantiation
我在R中使用
x <- structure(1, class = "foo")
来源:https://github.com/hadley/devtools/wiki/S3
以及
x <- new("foo", a = 1)
哪个更合适,使用new还是结构?
答案 0 :(得分:0)
应该知道,Hadley也有关于他的S4指南的部分,他说要用新的实例化
https://github.com/hadley/devtools/wiki/S4