Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
見ている特定のシンボルの値を取得するにはどうすればよいですか?
以前にハッシュでシンボルを定義した場合
:red => "blue"
「青」を取得するために :red でどのメソッドを呼び出すことができますか? .to_s と .id2name で「赤」が表示される
使用Hash#[]:
Hash#[]
>> h = {:red => "blue"} => {:red=>"blue"} >> h[:red] => "blue"