Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Class with declared getter and default value

  • getter
class Person
  getter name : String

  def initialize
    @name = "Default name"
  end
end

prs = Person.new
p! prs        # prs # => #<Person:0x7f804672fe80 @name="Default name">
puts prs.name # Default name

# prs.name = "Joe"
# Error: undefined method 'name=' for Person