- 책_곽용재님 홈페이지
- 책_노란북 - 책 가격비교
- 책_김재우-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 |
- Programming
- 단상
- 유시민
- 고전강의
- 유머
- c++
- BSP
- programming challenges
- stl
- 인문학
- 태그가 아깝다
- 삼국지6
- 고등학교 사회공부
- template
- 노무현
- 진삼국무쌍5
- 강유원
- 일리아스
- 정신분석
- 게임
- 김두식
- 삼국지
- 영화
- 프로그래밍
- 책
- 진중권
- modernc++
- 정성일
- 건강
- 소비자고발
- Today
- Total
목록Programming (40)
lancelot.com
객체 뿐만아니라 비교 기준이 되는 멤버 값으로도 검색 가능하게 하려면 People 객체와 문자열로 비교 가능해야한다 비교 함수객체안에 is_transparent 멤버타입이 있어야한다. (C++14) 신기하네... 나중에 시간나면 더 찾아봐야겠다. #include #include struct People { std::string name; int age; People(std::string name, int age) : name{ name }, age{ age } { } }; struct PeopleCompare { bool operator()(const People& p1, const People& p2) const { return p1.name < p2.name; } bool operator()(cons..
멤버 변수의 초기화를, 상속받는 부모클래스보다 먼저하고싶을때, 그 멤버 변수를 가지는 클래스를 만들어서, 부모클래스보다 앞에서 상속받으면 된다 이렇게까지 해야하는 곳이 있을까.. 싶고, 상속 순서에 따라 초기화가 결정되도록 하면, 나중에 복잡해질 경우에 문제가 생기지 않을까.. 싶기도 한데... 어쨌든 답답하면 써야지..ㅋ #include class Buffer { public : Buffer(std::size_t size) { std::cout
container 안의 item을 증가시키고 싶을때 ++ 등을 사용하는 것보다 advance를 사용하면, container가 달라도 같은 구현을 유지할 수 있어서 좋다. std::advance(it, N) 반복자 it를 N만큼 이동하는 알고리즘 반복자의 종류(category) 에 따라 +또는 ++ 연산자 사용 advance 구현방법 tag_dispatching : C++98 enable_if : C++11 if constexpr : C++17 concept & requires clauses : C++20 #include #include #include #include int main() { //std::vector c = { 1,2,3,4,5,6,7,8,9,10 }; std::list c = { 1,2,..
소멸자를 proteced 로하면 객체를 힙에만 생성할 수 있다. #include class RefCount { int refcnt = 0; public : void addRef() { ++refcnt; } void release() { if (--refcnt == 0) delete this; } // 소멸자를 protected로 하면 외부에서 소멸이 불가능해져서 // 1. delete 불가능 (소멸자 호출이 불가능하므로) // 2. 지역변수 생성 불가 (지역변수가 소멸될때 소멸자를 호출 할 수 없어서) - 객체를 힙에만 생성할 수 있다. protected: virtual ~RefCount(){std::cout release(); } C++11 에 도입된 thread safe 한 atomic 을 적용 #i..
// default 생성자가 없다 class Point { int x=0; int y=0; public : //Point() = default; Point(int x, int y) : x(x), y(y) {} }; Generic Container IDioms Generic (template 기반) container를 설계할때, 저장되는 "타입이 가져야하는 요구조건을 최소화" 하도록 한다 STL container 에 저장되는 타입의 최소요구조건 : 복사생성이 가능해야한다 아래 예시에서 new T[sz] : T 타입은 반드시 default constructor 를 가져야함 메모리 할당과 호출을 분리하면 더욱 유연한 container가 된다 operator new() 로 메모리할당 placement new 를..
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..
가변인자 template을 이용한 생성자 #include #include #include class Point { int x{ 0 }; int y{ 0 }; public : Point() = default; Point(int x, int y) : x(x), y(y) {} }; template struct compressed_pair; template struct compressed_pair { T1 first; T2 second; T1& getFirst() { return first; } T2& getSecond() { return second; } const T1& getFirst() const { return first; } const T2& getSecond() con..
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
Tag dispatching empty class 를 이용해서 함수 오버로딩을 설명적인 코드로 만드는 테크닉 tag dispatching 에 사용되는 empty class 를 tag_type이라고도 함 Tag dispatching 예시 1 #include #include struct adopt_lock_t { explicit adopt_lock_t() = default; }; constexpr adopt_lock_t adopt_lock; template class lock_guard { public : using mutex_type = Mutex; explicit lock_guard(Mutex& mtx) : mtx(mtx){ mtx.lock();} explicit lock_guard(Mutex& mtx,..