摘要:
std::thread_local是线程局部存储。每个线程都有一个对应备份,被std::thread_local修饰的变量生存周期和所属线程一致,线程被销毁该变量释放。 可以用以下代码观察: #include<iostream> #include<thread> using namespace st 阅读全文
摘要:
std::initializer_list<T>提供了以下接口: size_t size() const noexcept; const T* begin() const noexcept; const T* end() const noexcept; 通过std::initializer_list 阅读全文