티스토리 뷰
C++/Effective Modern C++
[Effective Modern C++] 항목 33. std::forward를 통해서 전달할 auto&& 매개변수에는 decltype을 사용하라
pppgod 2020. 1. 18. 17:35람다 함수와 함께 auto 를 사용하는 것은 매우 고무적인 일이다. 다음과 같이 말이다.
auto f = [](auto x) { return normalize(x); };
이 람다 함수는 컴파일러에 의해 다음과 같은 클로저 클래스가 생성된다.
class 컴파일러가_생성한_클래스 {
public:
template<typename T>
auto operator()(T x) const
{ return normalize(x); }
...
};
이제 문제가 생기는 것은 x 를 normalize 에 완벽 전달을 하고 싶어지면 어떻게 해야할까?
auto f = [](auto&& x)
{ return normalize(std::forward<???>(x)); };
???에 적어야할 타입은 무엇일까? 우리는 항목3에서 배운 decltype 을 사용하면 된다.
다음과 같이 사용하면 된다.
auto f = [](auto&& x)
{
return
normalize(std::forward<decltype(x)>(x));
};
참고 서적
스콧 마이어스, Effective Modern C++
'C++ > Effective Modern C++' 카테고리의 다른 글
[Effective Modern C++] 항목 35. 스레드 기반 프로그래밍보다 과제 기반 프로그래밍을 선호하라 (0) | 2020.02.02 |
---|---|
[Effective Modern C++] 항목 34. std::bind보다 람다를 선호하라 (0) | 2020.01.18 |
[Effective Modern C++] 항목 32. 객체를 클로저 안으로 이동하려면 초기화 갈무리를 사용하라 (0) | 2020.01.12 |
[Effective Modern C++] 항목 31. 기본 갈무리 모드를 피하라 (0) | 2020.01.11 |
[Effective Modern C++] 항목 30. 완벽 전달이 실패하는 경우들을 잘 알아두라. (0) | 2019.12.15 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이소
- Effective Modern C++
- std::forward
- C++14
- C++
- 보편참조
- 포인터
- Perfect
- 람다
- Future
- Forwarding
- detach
- Effective
- Override
- C
- MOVE
- Join
- thread
- C++11
- CPP
- const
- std::move
- 발아시기
- async
- 보편 참조
- Unreal
- Modern
- Overloading
- forward
- auto
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함