Recent posts

[C++] consteval

less than 1 minute read

개요 컴파일 타임에 계산이 불가능하면 컴파일 에러 발생

[C++] owner_less

less than 1 minute read

개요 값 기반이 아닌 소유자 기반 비교

[C++] constinit

less than 1 minute read

개요 저장 기간이 정적 혹은 쓰레드인 변수가 컴파일 시점에 초기화됨을 보장 비상수이므로 const 선언 가능

[C++] uncaught_exception/uncaught_exceptions

less than 1 minute read

개요 uncaught_exception C++11 현재 스레드에서 스택 해제가 진행 중이면 true, 아니면 false uncaught_exceptions C++17 현재 스레드에서 catch되지 ...

[C++] module

1 minute read

개요 기능의 일부만을 포함시킬 수 있는 기능 컴파일 시간 대폭 감소 #include 이용 시 소스 파일마다 헤더 파일 내용 전체를 포함 module 이용 시 일부만 포함 가능되며 한번만 포함 export 하지 않는 이름은 변경하더라...