ruby

#Range
#begin和end分别表示Range的开头和结尾
self.include?self.end
self.menber?10
respond_to#用于判断对象是否存在某一方法
str.respond_to?"to_s"
#ruby的常量--全部大写,下划线连接
INFO_PER_MONTH = 3
#类和模块大写字母开头--驼峰式
class TestRuby



你可能感兴趣的:(ruby)