Notice
Recent Posts
Recent Comments
«   2025/04   »
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
Tags
more
Archives
Today
Total
관리 메뉴

INSPECT

[Ruby] 4. Symbol 본문

Ruby on Rails - 멋쟁이 사자처럼

[Ruby] 4. Symbol

INSPECT 2017. 1. 28. 00:31
What's a Symbol?

You can think of a Ruby symbol as a sort of name. It's important to remember that symbols aren't strings:

"string" == :string # false

Above and beyond the different syntax, there's a key behavior of symbols that makes them different from strings: while there can be multiple different strings that all have the same value, there's only one copy of any particular symbol at a given time.

The .object_id method gets the ID of an object—it's how Ruby knows whether two objects are the exact same object.

* ""(따옴표) 안에 쓴 글자는 변수이고 :(콜론) 뒤에 쓰는 글자는 심볼이다.


object_id는 해당 오브젝트의 ID값을 가져온다. 즉 메모리 공간에서의 주소를 가져오는 것과 같은 맥락이다. 사람이 보기에 같은 문자열도 다른 메모리 공간에 할당되어 있다. 그 결과가 첫 번째 20838080과 20837980으로 서로 다른 것을 알 수 있다.

하지만 심볼은 동일한 객체로 재사용이 가능하다. 메모리 효율성이 좋기 때문에 hash의 키로 문자열을 사용하는 것보다 심볼을 사용하는 것이 좋다.

ex)


Converting Between Symbols and Strings

Converting between strings and symbols is a snap.

:sasquatch.to_s
# ==> "sasquatch"

"sasquatch".to_sym
# ==> :sasquatch

심볼과 스트링은 to_s와 to_sym 을 통해 서로 쉽게 변환이 가능하다.

"hello".intern
# ==> :hello

다른 방법으로는 .intern이 있다.

The Hash Rocket Has Landed

puts new_hash
# ==> {:one=>1, :two=>2, :three=>3}
new_hash = { one: 1,
  two: 2,
  three: 3
}

루비 1.9버전부터 쉽게 문법이 바뀌었다.

Becoming More Selective

We know how to grab a specific value from a hash by specifying the associated key, but what if we want to filter a hash for values that meet certain criteria? For that, we can use .select.

grades = { alice: 100,
  bob: 92,
  chris: 95,
  dave: 97
}

grades.select {|name, grade| grade < 97}
# ==> {:bob=>92, :chris=>95}

grades.select { |k, v| k == :alice }
# ==> {:alice=>100}
  1. In the example above, we first create a grades hash that maps symbols to integers.
  2. Then we call the .select method and pass in a block of code. The block contains an expression for selecting matching key/value pairs. It returns a hash containing :bob and :chris.
  3. Finally, we call the .select method again. Our block looks only for the key :alice. This is an inefficient method of getting a key/value pair, but it shows that .select does not modify the hash.

(Here we're using "name" or "k" to stand for the key and "grade" or "v" to stand for the value, but as usual with blocks, you can call your variables whatever you like.)

.select를 써서 쉽게 해시에서 키에 따른 값을 뽑아낼 수 있다. 예시에서 나오는 name, grade나 k, v는 다른 값으로 바꿔도 상관없다.

More Methods, More Solutions

Great work!

We've often found we only want the key or value associated with a key/value pair, and it's kind of a pain to put both into our block and only work with one. Can we iterate over just keys or just values?

This is Ruby. Of course we can.

Ruby includes two hash methods, .each_key and .each_value, that do exactly what you'd expect:

my_hash = { one: 1, two: 2, three: 3 }

my_hash.each_key { |k| print k, " " }
# ==> one two three

my_hash.each_value { |v| print v, " " }
# ==> 1 2 3

해시의 키와 값을 뽑아내는 멋진 방법이다.

ex)


'Ruby on Rails - 멋쟁이 사자처럼' 카테고리의 다른 글

[Ruby]3. Hash  (0) 2017.01.26
[Ruby]2  (0) 2017.01.26
[Ruby] 1  (0) 2017.01.26
[CSS] 웹 폰트 사용하기  (0) 2017.01.20
[C9] css: command not found 오류  (0) 2017.01.20
Comments