26 lines
314 B
Markdown
26 lines
314 B
Markdown
# Lösung: Zugriffsmethoden
|
|
|
|
|
|
|
|
```ruby
|
|
class Professor
|
|
attr_reader :name
|
|
attr_accessor :fach
|
|
|
|
def initialize(name, fach)
|
|
@name = name
|
|
@fach = fach
|
|
end
|
|
|
|
def to_s
|
|
"Prof. #{@name} lehrt #{fach}"
|
|
end
|
|
end
|
|
|
|
p = Professor.new('Smits', 'PR3')
|
|
puts p.name
|
|
puts p.fach
|
|
p.fach = 'WIA'
|
|
puts p.fach
|
|
```
|