Rubyの課題を作成しました - #2
Open
busitora wants to merge 8 commits into
Open
Conversation
|
superやputs内に変数を使ったりと全体的に良いと思いました! |
Owner
Author
|
koooosuke
reviewed
Mar 8, 2019
| class Dog < Animal | ||
| def initialize(name) | ||
| super | ||
| @voice = "ワンワン" |
There was a problem hiding this comment.
細かいですが、課題2-5の出力が相違しているのでご確認下さい。
$ ruby exercise02-5.rb
わんこ: ワンワン!
にゃんこ: ニャー!
| def self.count_info | ||
| "Carクラスのクラス変数@@countは#{@@count}です。" | ||
| end | ||
|
|
| end No newline at end of file | ||
| end | ||
|
|
||
| class Dog < Animal |
There was a problem hiding this comment.
class Dog < Animal
ここのインデントはしなくてもいいかなと個人的には思います!
| end | ||
| end | ||
|
|
||
| class Cat < Animal |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
exercise02-1
@speedが30以上50未満時アラートを出力、50以上のときはアラート後、減速する仕様です。
exercise02-2
Carクラスを継承したTrackCarクラスでload_weightというアクセサメソッド(ゲッター)を追加しインスタンス生成時はデフォルトでload_weightが500になる仕様です。
exercise02-3
Carクラスにpassengersというアクセサメソッド(ゲッター/セッター)を追加し初期値を1として、passengersが1ずつ増えていき最大4人でpassengersは増えない仕様です。
exercise02-4
Carクラスにcount_infoというクラスメソッドを追加しクラス変数@@countが表示される仕様です。
exercise02-5
Animalクラスを継承したDogクラス、Catクラスでそれぞれのクラスで初期値として設定されている@voiceを書き換えました。