當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


R inheritedSlotNames 從超級類繼承的插槽名稱

R語言 inheritedSlotNames 位於 methods 包(package)。

說明

對於類(或類定義,請參閱 getClass 和類 classRepresentation 的說明),給出從 “above” 繼承的名稱,即超類,而不是此類定義本身。

用法

inheritedSlotNames(Class, where = topenv(parent.frame()))

參數

Class

字符串或 classRepresentation ,即由 getClass 產生的。

where

環境,進一步傳遞給 isClassgetClass

槽名稱的字符向量,或 NULL

例子

.srch <- search()
library(stats4)
inheritedSlotNames("mle")

if(require("Matrix", quietly = TRUE)) withAutoprint({
  inheritedSlotNames("Matrix")       # NULL
  ## whereas
  inheritedSlotNames("sparseMatrix") # --> Dim & Dimnames
  ##  i.e. inherited from "Matrix" class
  cl <- getClass("dgCMatrix")        # six slots, etc
  inheritedSlotNames(cl) # *all* six slots are inherited
})
## Not run: 


## detach package we've attached above:
for(n in rev(which(is.na(match(search(), .srch)))))
   try( detach(pos = n) )

## End(Not run)

也可以看看

slotNamesslotsetClass

相關用法


注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Names of Slots Inherited From a Super Class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。