Versions(Biobase)
Versions()所属R语言包:Biobase
Class "Versions"
类“版本”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A class to record version number information. This class is used to report versions; to add version information to your own class, use Versioned-class.
A类记录的版本号信息。这个类用于报表版本,版本信息添加到自己的类,使用Versioned-class。
方法----------Methods----------
The following are defined; package developers may write additional methods.
以下定义;包开发人员可以编写额外的方法。
new("Versions", ...) Create a new Versions-class instance, perhaps with named version elements (the contents of ...) added. Named elements of versions are character strings that can be coerced using package_version, or package_version
new("Versions", ...)创建一个新的Versions-class实例,或许命名的版本元素(...的内容)。名为versions字符的字符串,可以强制使用package_version或package_version元素
object["id"] Obtain version information "id" from object.
object["id"]获取版本"id"object的信息。
object["id"] <- value Create or update version information "id" on instance object.
object["id"] <- value创建或更新版本信息"id"例如object。
object[["id"]] Obtain version information "id" from object. The result is a list of integers, corresponding to entries in the version string.
object[["id"]]获取版本"id"object的信息。结果是一个整数列表,相应的版本字符串中的条目。
object[["id"]] <- value Create or update version information "id" on instance object.
object[["id"]] <- value创建或更新版本信息"id"例如object。
object$id Obtain version information "id" from object.The result is a list of integers, corresponding to entries in the version string.
object$id获取版本信息"id"object。结果是一个整数列表,相应的版本字符串中的条目。
object$id <- value Create or update version
object$id <- value创建或更新版本
show(object) Display version information.
show(object)显示版本信息。
updateObject(object) Update object to the current Versions-class representation. Note that this does not update another class that uses Versions-class to track the
updateObject(object)更新object当前Versions-class表示。请注意,这不更新使用另一个类的Versions-class跟踪
as(object, "character") Convert object to character representation, e.g., 1.0.0
as(object, "character")转换object字符表示,例如,1.0.0
object1 < object2 Compare object1 and object2 using version class information. Symbols in addition to < are admissible; see ?Ops
object1 < object2比较object1和object2使用版本的类的信息。除了<符号受理;?Ops
作者(S)----------Author(s)----------
Biocore
参见----------See Also----------
classVersion isCurrent isVersioned
classVersionisCurrentisVersioned
举例----------Examples----------
obj <- new("Versions", A="1.0.0")
obj
obj["A"] <- "1.0.1"
obj
obj["B"] <- "2.0"
obj
obj1 <- obj
obj1["B"] <- "2.0.1"
obj1 == obj
obj1["B"] > "2.0.0"
obj["B"] == "2.0" # TRUE![真!]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|