January 01, 2001
Programming in Ruby
class KaraokeSong < Song
def initialize(title, lyric)
super(title)
@lyric = lyric
end
def to_s
super + " [#@lyric]"
end
end
Example 2: A subclass of class Song.
|
|
||||||||||||||||||||||||||||
|
|
|
|