Skip to content

Instantly share code, notes, and snippets.

@Arakaki
Created September 5, 2013 11:48
Show Gist options
  • Save Arakaki/6449110 to your computer and use it in GitHub Desktop.
Save Arakaki/6449110 to your computer and use it in GitHub Desktop.
getter setter インスタンス変数
class Ruler
#rubyではgetterに=をつける習慣がある。というかシンタックスシュガーになっている
def length=(val)
@length = val
end
def length
@length
end
end
ruler = Ruler.new
ruler.length = 30
puts ruler.length
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment