Rev 71386 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/class.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2016 R Core Team% Distributed under GPL 2 or later\name{class}\title{Object Classes}\alias{class}\alias{class<-}\alias{oldClass}\alias{oldClass<-}\alias{unclass}\alias{inherits}\description{\R possesses a simple generic function mechanism which can be used foran object-oriented style of programming. Method dispatch takes placebased on the class of the first argument to the generic function.}\usage{class(x)class(x) <- valueunclass(x)inherits(x, what, which = FALSE)oldClass(x)oldClass(x) <- value}\arguments{\item{x}{a \R object}\item{what, value}{a character vector naming classes. \code{value}can also be \code{NULL}.}\item{which}{logical affecting return value: see \sQuote{Details}.}}\details{Here, we describe the so called \dQuote{S3} classes (and methods). For\dQuote{S4} classes (and methods), see \sQuote{Formal classes} below.Many \R objects have a \code{class} attribute, a character vectorgiving the names of the classes from which the object \emph{inherits}.If the object does not have a class attribute, it has an implicitclass, \code{"matrix"}, \code{"array"} or the result of\code{\link{mode}(x)} (except that integer vectors have implicit class\code{"integer"}). (Functions \code{oldClass} and\code{oldClass<-} get and set the attribute, which can also be donedirectly.)Note that \code{\link{NULL}} objects cannot have attributes (hence notclasses) and attempting to assign a class is an error.When a generic function \code{fun} is applied to an object with classattribute \code{c("first", "second")}, the system searches for afunction called \code{fun.first} and, if it finds it, applies it tothe object. If no such function is found, a function called\code{fun.second} is tried. If no class name produces a suitablefunction, the function \code{fun.default} is used (if it exists). Ifthere is no class attribute, the implicit class is tried, then thedefault method.The function \code{class} prints the vector of names of classes anobject inherits from. Correspondingly, \code{class<-} sets theclasses an object inherits from. Assigning \code{NULL} removes theclass attribute.\code{unclass} returns (a copy of) its argument with its classattribute removed. (It is not allowed for objects which cannot becopied, namely environments and external pointers.)\code{inherits} indicates whether its first argument inherits from anyof the classes specified in the \code{what} argument. If \code{which}is \code{TRUE} then an integer vector of the same length as\code{what} is returned. Each element indicates the position in the\code{class(x)} matched by the element of \code{what}; zero indicatesno match. If \code{which} is \code{FALSE} then \code{TRUE} isreturned by \code{inherits} if any of the names in \code{what} matchwith any \code{class}.All but \code{inherits} are \link{primitive} functions.}\note{Functions \code{oldClass} and \code{oldClass<-} behave in the same wayas functions of those names in S-PLUS 5/6, \emph{but} in \R\code{\link{UseMethod}} dispatches on the class as returned by\code{class} (with some interpolated classes: see the link) ratherthan \code{oldClass}. \emph{However}, \link{group generic}s dispatchon the \code{oldClass} for efficiency, and \link{internal generic}sonly dispatch on objects for which \code{\link{is.object}} is true.In older versions of \R, assigning a zero-length vector with\code{class} removed the class: it is now an error (whereas itstill works for \code{oldClass}). It is clearer to always assign \code{NULL}to remove the class.}\section{Formal classes}{An additional mechanism of \emph{formal} classes, nicknamed\dQuote{S4}, is available in package \pkg{methods} which is attachedby default. For objects which have a formal class, its name isreturned by \code{class} as a character vector of length one andmethod dispatch can happen on \emph{several} arguments, instead ofonly the first. However, S3 method selection attempts to treat objectsfrom an S4 class as if they had the appropriate S3 class attribute, asdoes \code{inherits}. Therefore, S3 methods can be defined for S4classes. See the \sQuote{\link[methods]{Introduction}} and \sQuote{\link{Methods_for_S3}}help pages for basic information on S4 methods and for the relationbetween these and S3 methods.The replacement version of the function sets the class to the valueprovided. For classes that have a formal definition, directlyreplacing the class this way is strongly deprecated. The expression\code{\link{as}(object, value)} is the way to coerce an object to aparticular class.The analogue of \code{inherits} for formal classes is\code{\link{is}}. The two functions behave consistentlywith one exception: S4 classes can have conditionalinheritance, with an explicit test. In this case, \code{is} willtest the condition, but \code{inherits} ignores all conditionalsuperclasses.}\seealso{\code{\link{UseMethod}}, \code{\link{NextMethod}},\sQuote{\link{group generic}}, \sQuote{\link{internal generic}}}\examples{x <- 10class(x) # "numeric"oldClass(x) # NULLinherits(x, "a") #FALSEclass(x) <- c("a", "b")inherits(x,"a") #TRUEinherits(x, "a", TRUE) # 1inherits(x, c("a", "b", "c"), TRUE) # 1 2 0}\keyword{methods}\keyword{classes}