Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 약참조
- 정렬
- 데이터애셋
- 언리얼엔진구조체
- 스마트포인터
- UE_LOG
- 프로그래머스
- 크리티컬섹션
- 애셋로드
- moreeffectiveC++
- 람다
- 델리게이트
- UELOG
- 정렬알고리즘
- 언리얼가비지컬렉터
- UML관련
- stl
- 람다사용정렬
- C++최적화
- UE4 커스텀로그
- 강참조
- 자료구조
- 알고리즘
- map
- enumasByue
- 선택정렬
- dataasset
- unorder_map
- BFS
- C++
Archives
- Today
- Total
기억을 위한 기록들
[CPP] using 과 typedef 본문
둘은 크게 다르지 않지만, using의 장점은 template을 지원한다.
#include <iostream>
#include <vector>
template <typename T>
using my_vector = std::vector<T>;
using my_vector2 = std::vector<int>;
//vs
typedef std::vector<int> my_vector3;
//error!
//template <typename T>
//typedef std::vector<T> my_vector4;
int main()
{
//using
my_vector<int> a;
my_vector2 b;
//typedef
my_vector3 c;
return 0;
}
참고 :
https://unikys.tistory.com/381
'C & CPP' 카테고리의 다른 글
[CPP] 함수 객체에 관하여 (0) | 2022.02.02 |
---|---|
[CPP]std::function에 관하여 (0) | 2022.02.02 |
[CPP] C++에서의 1e-6f 란? (과학적 표기법/scientific notation) (0) | 2021.09.14 |
[CPP] C++ 최적화에 관하여 (3-3) (0) | 2021.08.22 |
[CPP] C++ 최적화에 관하여 (2-3) (0) | 2021.08.16 |