没有类定义的通用方法

时间:2013-09-05 13:47:29

标签: r methods generic-programming

如何制作简单的通用功能而不会太复杂? 我想要这样的东西:

inputA <- function(a,b){
    return(structure(c(a=a,b=b), class= "inputclassA"))
}

inputB <- function(c,d){
  return(structure(c(c=c,d=d), class= "inputclassB"))
}  

mathstuff.inputclassA <- function(inp){
  print("inputtype: inputclassA")
  inp['a'] + inp['b']
}  

mathstuff.inputclassB <- function(inp){
  print("inputtype: inputclassB")
  inp['c'] - inp['d']
}

mystructure <- inputA(4,2)
mathstuff(mystructure) #should return 6

mystructure <- inputB(4,2)
mathstuff(mystructure) #should return 4

到目前为止,我解决了这个问题

classCheck<-function(obj,checkIs){
  return (attr(obj,"class") == checkIs)
}

但是不是有更好的方法吗?

1 个答案:

答案 0 :(得分:1)

好的,明白了。

这是关键。真是遗憾,我没有意识到,the "related" thread得到了答案。

mathstuff <- function(x,...) UseMethod("mathstuff")

所以这很有效。对不起,我的坏。

inputA <- function(a,b){
  return(structure(c(a=a,b=b), class= "inputclassA"))
}

inputB <- function(c,d){
  return(structure(c(c=c,d=d), class= "inputclassB"))
}  

#make generic function
mathstuff <- function(x,...) UseMethod("mathstuff")

mathstuff.inputclassA <- function(inp){
  print("inputtype: inputclassA")
  inp['a'] + inp['b']
}  

mathstuff.inputclassB <- function(inp){
  print("inputtype: inputclassB")
  inp['c'] - inp['d']
}

mystructure <- inputA(4,2)
mathstuff(mystructure) 

mystructure <- inputB(4,2)
mathstuff(mystructure)