일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- SECS
- modern c++
- Spring
- 회원가입
- c
- python
- linux
- java
- SECS/GEM
- 자바
- Spotify Api
- regression
- 프로그래머스
- MYSQL
- 스포티파이
- Baekjoon
- spotify
- C++
- Gem
- 파이썬
- SECS-II
- 회귀
- Computer Science
- SW Expert Academy
- programmers
- CS
- Spring JPA
- spring boot
- 백준
- SWEA
Archives
- Today
- Total
비버놀로지
[mordern C++] auto 본문
728x90
auto
- 초기값 type에 맞춰 선언하는 변수의 type이 자동으로 결정
- compile time에 자동으로 type 완성 (선언과 동시에 초기화 필요)
- 함수의 return type 지원
- 함수의 매개변수에는 지원 안됨 (C++14 기준) : 필요시, template 사용
- iterator 등 type이 복잡해지는 경우에 특히 유용하게 사용
auto a = 1; : int
auto &b = a; : int
728x90
'LANGUAGE STUDY > C C++' 카테고리의 다른 글
[Modern C++] range-based for loop (0) | 2023.01.16 |
---|---|
[Modern C++] Template (0) | 2023.01.16 |
[Mordern C++] reference - 참조자 (0) | 2023.01.16 |
[Modern C++] Pair (0) | 2023.01.16 |
[C++] STL (0) | 2023.01.16 |
Comments