블로그
-
C++ 템플릿 특수화 | template specialization 가이드
C++ 템플릿 특수화: template specialization 가이드. 전문화 (Full Specialization)부터 핵심 개념·패턴·실무 함정을 코드 예제로 풉니다. C++·template·specialization 중심으로 설명합니다.
-
C++ 템플릿 템플릿 인자 | template template parameter 가이드
C++ 템플릿 템플릿 인자에 대해 정리한 개발 블로그 글입니다. 템플릿 템플릿 인자(template template parameter) 는 템플릿이 다른 템플릿을 인자로 받게 하는 문법입니다. vector<int>처럼 이미 구체화된 타입이 아니라, 어떤 컨테이너 템플릿"...
-
C++ Temporary Objects | '임시 객체' 가이드
C++ 임시 객체(temporary objects) 는 표현식 평가 중에 생성되는 이름 없는 객체입니다. 일반적으로 표현식이 끝나면 즉시 소멸되지만, const 레퍼런스나 우측값 레퍼런스로 바인딩하면 수명이 연장됩니다.
-
C++ this Pointer | 'this 포인터' 가이드
Everything about C++ this Pointer : from basic concepts to practical applications. Master key content quickly with examples.'this 포인터' 가이드. C++ this Poi...
-
C++ thread_local | '스레드 로컬 저장소' 가이드
Everything about C++ thread_local : from basic concepts to practical applications. Master key content quickly with examples.'스레드, 1. thread_local 기본. 실전...
-
C++ 스레드 풀 | 'Thread Pool' 구현 가이드
Everything about C++ 스레드 풀 : from basic concepts to practical applications. Master key content quickly with examples. Start now.'Thread Pool' 구현 가이드. C+...
-
C++ 삼원 비교 연산자 | 'Spaceship Operator' 가이드
Everything about C++ 삼원 비교 연산자 : from basic concepts to practical applications. Master key content quickly with examples.'Spaceship Operator' 가이드. C++ 삼...
-
C++ 시간 변환 | chrono duration_cast와 시계 변환
C++ 시간 변환: chrono duration_cast와 시계 변환. C++에서 시간 변환·같이 보면 좋은 글 (내부 링크)로 흐름을 잡고 원리·코드·실무 적용을 한글로 정리합니다. Start now.
-
C++ time_point | '시간 지점' 가이드
C++ std::chrono::time_point는 특정 시계 위의 한 시점을 나타냅니다. duration과 함께 쓰이며, 시간 변환에서 time_point_cast로 해상도를 바꿀 수 있고, 스톱워치·벤치마크에서 경과 시간을 잴 때 now()로 기준점을 잡습니다.
-
C++ Timer Utilities | '타이머 유틸리티' 가이드
C++ Timer Utilities에 대해 정리한 개발 블로그 글입니다. #include <thread> #include <chrono> using namespace std::chrono_literals;. Start now.