Notice
Recent Posts
Recent Comments
Link
- 책_곽용재님 홈페이지
- 책_노란북 - 책 가격비교
- 책_김재우-SICP번역
- 플밍_쏘쓰포지
- 플밍_CodingHorror ?
- 플밍_상킴
- 플밍_김민장님
- GPGStudy
- 플밍_미친감자님
- 플밍_jz
- 플밍_샤방샤방님
- 플밍_글쓰는프로그래머2
- 플밍_키보드후킹
- 사람_재혁
- 사람_kernel0
- 사람_박PD
- 사람_경석형
- 사람_nemo
- 사람_kikiwaka
- 사람_Junios
- 사람_harry
- 사람_어떤 개발자의 금서목록..
- 사람_모기소리
- 사람_낙타한마리
- 사람_redkuma
- 사람_영원의끝
- 사람_민식형
- 도스박스 다음카페
- 플레이웨어즈 - 게임하드웨어벤치마크
- http://puwazaza.com/
- David harvey의 Reading Marx's c…
- 씨네21
- 한겨레_임경선의 이기적인 상담실
- 본격2차대전만화 - 굽시니스트
- 영화_정성일 글모음 페이지
- 영화_영화속이데올로기파악하기
- 음식_생선회
- 죽력고
- 사람_한밀
- 플밍_수까락
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 유시민
- 진중권
- 진삼국무쌍5
- 건강
- 소비자고발
- 게임
- 책
- 김두식
- 인문학
- 정성일
- 유머
- 고등학교 사회공부
- 강유원
- stl
- template
- 노무현
- 일리아스
- 정신분석
- Programming
- c++
- 프로그래밍
- 태그가 아깝다
- 삼국지
- 단상
- 고전강의
- programming challenges
- BSP
- 영화
- 삼국지6
- modernc++
Archives
- Today
- Total
01-07 02:28
lancelot.com
Empty class 와 Tag dispatching, [[no_unique_address]] 을 이용한 EBCO 본문
- empty class member는 크기에 포함되지 않음
- [[no_unique_address]] : Empty class 일 때, 독립적인 주소를 가질 필요가 없다
- C++20 에서 추가
// Visual Studio 2022 는 2022/07/24 현재 지원하지 않음
#include<iostream>
struct Empty1 {};
struct Empty2 {};
struct Data1 // sizeof : 4
{
[[no_unique_address]] Empty1 e1;
[[no_unique_address]] Empty2 e2;
int data;
};
struct Data2 // sizeof : 1
{
[[no_unique_address]] Empty1 e1;
};
struct Data3 // sizeof : 1
{
[[no_unique_address]] Empty1 e1;
[[no_unique_address]] Empty2 e2;
};
struct Data4 // sizeof : 2
{
[[no_unique_address]] Empty1 e1;
[[no_unique_address]] Empty1 e2;
};
int main()
{
Data1 d1;
Data2 d2;
Data3 d3;
Data4 d4;
std::cout << "size : " << sizeof(d1) << std::endl;
std::cout << "size : " << sizeof(d2) << std::endl;
std::cout << "size : " << sizeof(d3) << std::endl;
std::cout << "size : " << sizeof(d4) << std::endl;
std::cout << "d3.e1 address : " << &(d3.e1) << std::endl;
std::cout << "d3.e2 address : " << &(d3.e2) << std::endl;
std::cout << "d4.e1 address : " << &(d4.e1) << std::endl;
std::cout << "d4.e2 address : " << &(d4.e2) << std::endl;
}
- [[no_unique_address]] 를 이용하면, template partial specialization 을 이용해서 구현했던 empty class 부분의 구현을 줄일 수 있다.
#include<iostream>
#include<string>
#include<type_traits>
class Empty { };
struct one_and_variadic_arg_t { explicit one_and_variadic_arg_t() = default; };
struct zero_and_variadic_arg_t { explicit zero_and_variadic_arg_t() = default; };
template<typename T1, typename T2> struct compressed_pair
{
// [[no_unique_address]] Empty class 타입의 멤버가 독립적인 주소를 가질 필요가 없다
// Empty class 멤버가 크기에 포함되지 않음 - C++20
[[no_unique_address]] T1 first;
[[no_unique_address]] T2 second;
constexpr T1& getFirst() noexcept { return first; }
constexpr T2& getSecond() noexcept { return second; }
constexpr const T1& getFirst() const noexcept { return first; }
constexpr const T2& getSecond() const noexcept { return second; }
template<typename A1, typename ... A2>
constexpr compressed_pair(one_and_variadic_arg_t, A1&& arg1, A2&& ... arg2)
noexcept (
std::conjunction_v< std::is_nothrow_constructible<T1, A1>, std::is_nothrow_constructible<T2, A2...> > )
: first(std::forward<A1>(arg1)), second(std::forward<A2>(arg2)... ) {}
template<typename ... A2>
constexpr compressed_pair(zero_and_variadic_arg_t, A2&& ... arg2) noexcept(
std::conjunction_v< std::is_nothrow_default_constructible<T1>, std::is_nothrow_constructible<T2, A2...> > )
: first(), second( std::forward<A2>(arg2)... ) {}
};
int main()
{
compressed_pair<int, int> p1(one_and_variadic_arg_t{}, 1,1);
compressed_pair<Empty, int> p2(zero_and_variadic_arg_t{}, 1);
compressed_pair<int, Empty> p3(zero_and_variadic_arg_t{} );
compressed_pair<Empty, Empty> p4(zero_and_variadic_arg_t{} );
std::cout << sizeof(p1) << std::endl; // 8
std::cout << sizeof(p2) << std::endl; // 4
std::cout << sizeof(p3) << std::endl; // 4
std::cout << sizeof(p4) << std::endl; // 2
return 0;
}