Skip to content

Latest commit

 

History

History
85 lines (43 loc) · 3.11 KB

012.md

File metadata and controls

85 lines (43 loc) · 3.11 KB
layout title
post
第十二期

C++ 中文周刊 第12期

reddit/hackernews/lobsters/meetingcpp摘抄一些c++动态。

每周更新

周刊项目地址 github在线地址知乎专栏

欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue


资讯

编译器信息最新动态推荐关注hellogcc公众号

本周周报github直达

文章

新提案可以去掉lambda多余的括号

int main() {
  constexpr auto okay_in_cpp20  = [] {};                    // okay in C++20
  constexpr auto error_in_cpp20 = [] mutable {};            // okay in C++23
  constexpr auto error_in_cpp20 = [] -> int { return {};};  // okay in C++23
}

视频

benchmark显示clear要比赋值快很多很多, 主要是赋值造成的开销

<iframe width="560" height="315" src="https://www.youtube.com/embed/3X9qK7HWxjk" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

项目


本文永久链接