-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex1302.rb
52 lines (45 loc) · 1.45 KB
/
ex1302.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
# Studentクラスを作る
class Student
# Studentクラスのインスタンスを初期化する
def initialize(name, age)
@name = name
@age = age
end
# Studentクラスのインスタンスの文字列表現を返す
def to_s
"#{@name}, #{@age}"
end
end
# StudentBookアプリケーションのインスタンスを作る
class StudentBook
def inisitalize
@students = {}
end
# ハッシュにStudentクラスのインスタンスを複数作成する
def setUpStudents
@students = { # studentsをインスタンス変数に変更
:shin => Student.new( "Shin Kuboaki", 45 ),
:shinichirou => Student.new( "Shinichirou Ooba", 35 ),
:shingo => Student.new( "Shingo Katori", 30 ),
}
end
# すべてのインスタンスの名前と年齢を表示する
# 処理を手続きにする
def printStudents
@students.each { |key, value| # studentsをインスタンス変数に変更
puts "#{key} #{value.to_s}"
}
end
# StudentBookかデータをリストする
def listAllStudents
# Studentクラスのインスタンスの作成
setUpStudents
# Studentクラスのインスタンスの表示
printStudents
end
end
# StudentBookクラスのインスタンスを作成する
student_book = StudentBook.new
# Studentクラスのインスタンスの表示
student_book.listAllStudents