1. 实例方法
实例方法(instance method)在类定义中声明,旨在供类的特定对象或“实例”(instance)使用,如下所示:
class MyClass
# declare instance method
def instanceMethod
puts( "This is an instance method" )
end
end
# create object
ob = MyClass.new
# use instance method
ob.instanceMethod
本文档使用 BookStack 构建