일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- spring boot
- 파이썬
- 회귀
- python
- 자바
- Gem
- SECS-II
- spotify
- programmers
- CS
- 백준
- Baekjoon
- Computer Science
- SECS/GEM
- c
- Spring JPA
- Spotify Api
- SWEA
- modern c++
- C++
- java
- Spring
- regression
- 비트겟
- 스포티파이
- SW Expert Academy
- 회원가입
- 프로그래머스
- MYSQL
- SECS
Archives
- Today
- Total
비버놀로지
[Modern C++] range-based for loop 본문
728x90
range-based for loop
for( ① : ② ) { ... } : 범위 기반 for loop
②의 시작부터 끝까지 각 원소를 ①에 담으면서 loop 수행
① : 배열, 컨테이너의 각 원소를 담을 변수 선언
② : 구간을 반복할 배열, 컨테이너 이름
int arr[5] = {1,2,3,4,5}
for(auto x:arr) {x++;}
- copy value : 객체크기만큼 복사, 원본 변경 불가
- 수행 후 arr : 1,2,3,4,5
int arr[5] = {1,2,3,4,5}
for(auto &x:arr){x++;}
- copy reference : 8byte 복사, 원본 변경가능
- 수행 후 arr : 2,3,4,5,6
728x90
'LANGUAGE STUDY > C C++' 카테고리의 다른 글
[Modern C++] Initializer list 초기화 리스트 (0) | 2023.01.16 |
---|---|
[Modern C++] class vs struct (0) | 2023.01.16 |
[Modern C++] Template (0) | 2023.01.16 |
[mordern C++] auto (0) | 2023.01.16 |
[Mordern C++] reference - 참조자 (0) | 2023.01.16 |
Comments