C++ Value Categories
C++ Basics

C++ Basics

C++ Basic knowledges.
Read more
C++ Iterator System
C++ Best Practices
Argument Dependent Lookup
Perfect Forwarding

Perfect Forwarding

Do you know why `const T&` can bind to lvalue and rvalue? Do you know `T &&`? Do you know how to preserve the original type as input value? Do you know `perfect forwarding`? If any of these questions is unclear, don't hesitate to read this blog.
Read more
C++ functional Library Introduction
RAII

RAII

RAII --- Resource Acquisition Is Initialization. This is a C++ programming technique which binds the life cycle of a resource that must be acquired before use to the lifetime of an object.
Read more
Curiously Recurring Template Pattern --- CRTP
C++ Interview Questions