3

我想创建一个 S4 方法“myMethod”,它不仅在函数的第一个参数的类上调度,而且在这个类的一个槽的值上调度。

例如

我的对象:
@slot1="A"
@...

我希望 myMethod(myObject) 为 slot1="A" 和 slot2="B" 返回不同的内容。

我可以避免在“myObject”的代码中硬编码“if”吗?

4

1 回答 1

4

一个不完全不常见的模式是使用小类来提供多个分派

setClass("Base")
A = setClass("A", contains="Base")
B = setClass("B", contains="Base")
My = setClass("My", representation(slot1="Base"))

setGeneric("do", function(x, y, ...) standardGeneric("do"))
setMethod("do", "My", function(x, y, ...) do(x, x@slot1, ...))

然后是处理重新调度的方法

setMethod("do", c("My", "A"), function(x, y, ...) "My-A")
setMethod("do", c("My", "B"), function(x, y, ...) "My-B")

在行动:

>     My = setClass("My", representation(slot1="Base"))
>     a = My(slot1=A())
>     b = My(slot1=B())
>     do(a)
[1] "My-A"
>     do(b)
[1] "My-B"
于 2013-05-07T12:23:22.307 回答