Call default constructor of a S4 by class name

122 Views Asked by At

Are there more ways to call a function by name like I do below via do.call?

setClass(Class = "MyClass",
         representation = representation(name = "character",
                                         type = "character"
         )
)
MyClass <- function(...) new("MyClass",...)
cC<-"MyClass"
do.call(cC,list())
1

There are 1 best solutions below

0
On

Another way:

cstor <- get(cC)
cstor()