2.3.3 attribute()和attr()函数
attribute(object)返回对象object的各种特殊属性组成列表,不包括属性mode和length.
x<-c(apple=2.5,orange=2.1);x
attributes(x)
attr(object,name)存取对象object的名为name的属性。
attr(x,"names")
2.通过对其赋值改变属性值或者定义新的属性
attr(x,"names")<-c("apple","grapes");x
添加新的属性值
attr(x,"type")<-"fruit";x
attributes(x)
2.3.4 对象class的属性
这个在后续章节会用到。