C++ 反射 第一章 通识
占位,待录。
Dive deep into the C++ core, and discover more!
占位,待录。
最近发现泛型编程有了另一利器——泛型 Lambda,比想象当中要强大许多,威力不小,和大家分享一下。 本篇内容需要对泛型编程有所了解,若是读过之前更新的相关文章,食用更佳。 泛型编程 开始之前,先来简… Continue Reading 泛型 Lambda,如此强大!
根据提案 P0634-Down with typename,C++20 之后 typename 在有些地方不再必要。 原文主要内容如下: If X::Y — where T is a template… Continue Reading 新简化!typename 在 C++20 不再必要
本篇作为 Understanding variadic templates 的进阶内容,同时,Fold Expressions 也是 C++17 最常用的特性之一。 Fold Expressions … Continue Reading C++17: Simplify Code with Fold Expressions
GP and Templates(泛型编程与模板) 现实中许多问题错综而复杂,解决起来极为不易。 人们发现可以将这些问题拆解成更小的问题来进行解决。往往当把问题拆解到最小模块的时候,便能对问题产生新的… Continue Reading Understanding variadic templates