0
は効果がありませんが、それは何もありません:R S4クラスは、メンバ関数は、私は、リストに要素を追加することになっているS4クラス(プログラミング言語R)用のメンバ関数を定義し
setClass("ListHolder",
representation(
.list = "list"
),
prototype(
.list = list()
))
setGeneric("add",
function(this,i) standardGeneric("add")
)
setMethod("add",
signature(this="ListHolder",i="numeric"),
definition = function(this,i){
k <- length([email protected])
[email protected][[k+1]] <- i
})
testListHolder <- function(){
lh <- new("ListHolder")
for(i in 1:10) add(lh,i)
print([email protected])
}
testListHolder()
この意志を空のリストを出力します。ここで何が起こっているのですか?
@Xiatao羅:助けのおかげ。 – gcc