티스토리 뷰
sample_hash={'a'=> 1, 'b'=>2, 'c'=>3}
my_details={:name=>'mashrur', :favcolor=>'red'}
my_details['favcolor']
sample_hash['a']
my_hash={a:2}
another_hash={a:1, b:2, c:3}
another_hash[:a]
#Hash의 키만 가져온다.
sample_hash.keys
sample_hash.each do |key, value|
puts "The class for key is #{key.class} and the value is #{value.class}"
end
sample_hash.each do |key, value|
puts "The class for key is #{key.class} and the value is #{value.class}"
end
#키, 밸류 추가
my_hash[:e] = "Mashrur"
my_hash
my_hash[:c]="cat"
my_hash.each {|some_key, some_value| puts "The key is #{some_key} adn the valuse is #{some_value}"}
# 밸류가 String 타입인 키와 밸류를 출력한다.
my_hash.select {|k, v| v.is_a?(String)}
my_hash.each { |k,v| my_hash.delete(k) if v.is_a?(String)}
#hash_first 이름의 해쉬를 생성한다.
hash_first={'name'=> 'mashrur', 'favcolor'=>'red'}
#'favcolor' 키의 value 값을 리턴 받는다.
hash_first["favcolor"]
#해쉬를 다음과 같이 생성한다. 키를 적고 콜론 뒤에 값을 적는다.
hash_second={a:1, b:2, c:3, d:4}
#해쉬의 키에 대한 값을 불러올 때 다음과 같이도 할 수 있다.
hash_second[:c]
#해쉬에 key d를 가진 밸류를 변경
hash_second[:d]=7
hash_second.delete(:d)
hash_second.each {|somekey, somevalue| puts somevalue}
hash_second.each {|somekey, somevalue| puts "The key is #{somekey} and the value is #{somevalue}"}
hash_second.each {|somekey, somevalue| puts "The key is #{somekey} and the value is #{somevalue}"}
# 3보다 큰 value를 가진 키를 삭제하라는 것을 each문을 돌려서 함.
hash_second.each {|k, v| hash_second.delete(k) if v > 3}
hash_second.select {|k,v| v.odd?}
'Back-end' 카테고리의 다른 글
[루비온레일즈] 라우팅, 컨트롤러, View 페이지 설정 (0) | 2018.12.24 |
---|---|
[루비온레일즈] 레일즈 프로젝트 시작하기 (0) | 2018.12.24 |
[루비] 배열과 반복 (0) | 2018.12.21 |
[루비] if/elsif/else 문 (0) | 2018.12.21 |
[루비] 메서드 생성 (0) | 2018.12.21 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 내년은 빡세게!!
- 폭포수
- GIT
- 재테크공부
- Use case
- 파라메터
- docker
- resize
- 월부닷컴
- 항해플러스후기
- Spring boot
- 깃
- github
- 관계대수
- pop_back
- ```````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````````
- Inception
- 2023년
- 열반스쿨기초반
- 유즈케이스
- 항해솔직후기
- front
- push_back
- 월급쟁이부자들
- 부동산공부
- 깃허브
- 개발자 회고
- 도커
- 인셉션
- 항해플러스백엔드
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함