Chapter 1
Chapter 2. Choose the Right Control Structure
(正しい制御構造を選ぼう)
この章は簡単に。
・if not ~ ではなく unless ~ を使おう
This file contains 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
def title=( new_title ) | |
unless @readonly | |
@title = new_title | |
end | |
end |
・一行のときは後ろに置こう
This file contains 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
@title = new_title unless @readonly |
・for ~ end ではなく、each do ~ end を使おう(Rubyのイディオム的に)
This file contains 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
fonts = [ 'courier' 'times roman', 'helvetica' ] | |
for font in fonts | |
puts font | |
end |
This file contains 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
fonts = [ 'courier' 'times roman', 'helvetica' ] | |
fonts.each do |font| | |
puts font | |
end |
・Rubyでfalseになるのは、false と nil だけ
→0も 'false' (String) もfalse ではない
・?: (三項演算子)がRubyではよく使われる
This file contains 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
file = all ? 'specs' : 'latest_specs' |
・最後はこれ
This file contains 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
@first_name ||= '' |
→@first_nameがfalse(falseかnil)なら''(空文字)が入る。falseじゃなければ、そのまま。
奇妙な構文に見えるが、
count += 1
が
count = count + 1
であるように、
@first_name = @first_name || ''
の省略形だと思えばいい、とのこと。
よく出てくるので自然と覚えます。
Chapter 3. はRubyのCollection、配列とハッシュについてです。
Eloquent Rubyを読む(インデックス)