里缪 's Posts
C++ 反射 第一章 通识
占位,待录。
泛型 Lambda,如此强大!
最近发现泛型编程有了另一利器——泛型 Lambda,比想象当中要强大许多,威力不小,和大家分享一下。 本篇内容需要对泛型编程有所了解,若是读过之前更新的相关文章,食用更佳。 泛型编程 开始之前,先来简… Continue Reading 泛型 Lambda,如此强大!
新简化!typename 在 C++20 不再必要
根据提案 P0634-Down with typename,C++20 之后 typename 在有些地方不再必要。 原文主要内容如下: If X::Y — where T is a template… Continue Reading 新简化!typename 在 C++20 不再必要
那些值得使用的 C++ Attributes
介绍 今天这篇文章,我想跟大家探索下 Attributes 这个概念。 如果你还没有听过这个概念,或是一知半解,没咋用过,那正好表明它处于一个被忽略或是低估的位置。 Meeting C++ 曾经对此做… Continue Reading 那些值得使用的 C++ Attributes
Differences between keywords constexpr, consteval and constinit
C++20 新增了两个 const 相关的关键字,于是当前存在四个相似的关键字:const,constexpr,consteval 和 constinit。 接下来分别来进行讨论。 第一,经过 con… Continue Reading Differences between keywords constexpr, consteval and constinit
Simplify Code with “if constexpr” in C++17
Introduction 程序设计需要不断地做抉择,抉择便需用到逻辑分派。 Modern C++ 中,有多种方式完成这个任务,例如 Run-time if,Tag dispatching,SFINAE… Continue Reading Simplify Code with “if constexpr” in C++17
C++17: Simplify Code with Fold Expressions
本篇作为 Understanding variadic templates 的进阶内容,同时,Fold Expressions 也是 C++17 最常用的特性之一。 Fold Expressions … Continue Reading C++17: Simplify Code with Fold Expressions
Understanding variadic templates
GP and Templates(泛型编程与模板) 现实中许多问题错综而复杂,解决起来极为不易。 人们发现可以将这些问题拆解成更小的问题来进行解决。往往当把问题拆解到最小模块的时候,便能对问题产生新的… Continue Reading Understanding variadic templates
C++20 Coroutines: operator co_await
上篇介绍了 C++20 协程的诸多内容,独余 co_await 未曾涉及,它是协程中非常重要的一个关键字,用以支持挂起(suspend)和恢复(resume)的逻辑。 本篇便专门来对其进行介绍。 Aw… Continue Reading C++20 Coroutines: operator co_await