Notice
Recent Posts
Recent Comments
Link
- 책_곽용재님 홈페이지
- 책_노란북 - 책 가격비교
- 책_김재우-SICP번역
- 플밍_쏘쓰포지
- 플밍_CodingHorror ?
- 플밍_상킴
- 플밍_김민장님
- GPGStudy
- 플밍_jz
- 플밍_샤방샤방님
- 플밍_글쓰는프로그래머2
- 플밍_키보드후킹
- 사람_재혁
- 사람_kernel0
- 사람_경석형
- 사람_kikiwaka
- 사람_Junios
- 사람_harry
- 사람_어떤 개발자의 금서목록..
- 사람_모기소리
- 사람_웅섭형
- 사람_민식형
- 도스박스 다음카페
- 플레이웨어즈 - 게임하드웨어벤치마크
- David harvey의 Reading Marx's c…
- 한겨레_임경선의 이기적인 상담실
- 본격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 |
Tags
- 태그가 아깝다
- 노무현
- 정신분석
- 삼국지6
- 단상
- 소비자고발
- 일리아스
- 진중권
- 고등학교 사회공부
- 진삼국무쌍5
- 유시민
- programming challenges
- template
- 건강
- 책
- stl
- Programming
- modernc++
- 강유원
- 김두식
- 프로그래밍
- BSP
- 영화
- c++
- 정성일
- 고전강의
- 유머
- 게임
- 인문학
- 삼국지
Archives
- Today
- Total
04-13 22:00
목록EBCO (2)
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 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..
프로그래밍
2022. 7. 24. 10:45
EBCO(Empty Base Class Optimization)
Empty class는 member를 가지지 않지만, Empty class의 sizeof(empty)는 1byte 이다. 그래서 empty class를 member로 가지면, size를 가지게되는데, 대신에 empty class에서 상속을 받으면, 메모리 구조는 같지만 size는 0이 된다. ex1) #include class Empty {}; struct Data1 { Empty e; int data; }; struct Data2 : public Empty { int data; }; int main() { std::cout
프로그래밍
2022. 7. 18. 09:33