C++/Syntax
2021. 3. 11. 16:25
Type Alias
- 자료형, 클래스 등을 다른 이름으로도 사용할 수 있게 해준다.
typedef
typedef vector<pair<string, int>> pairlist_t;
using
using pairlist_t = vector<pair<string, int>>;
'C++ > Syntax' 카테고리의 다른 글
C++ switch (0) | 2021.03.11 |
---|---|
C++ 제어 흐름 (Control Flow) (0) | 2021.03.11 |
C++ 열거형 (Enumerate Type) (0) | 2021.03.10 |
C++ 형변환 (Type Conversion) (0) | 2021.03.10 |
C++ 자료형 추론 (auto, decltype) (0) | 2021.03.10 |