diff --git a/README.md b/README.md index 3b1a993..563544c 100644 --- a/README.md +++ b/README.md @@ -145,6 +145,7 @@ for(decl:col) { - [字面量、静态断言和成员函数说明符](./modern_C++_30/literalAssert) - [是不是应该返回对象?](./modern_C++_30/returnObj) - [编译期多态:泛型编程和模板入门](./modern_C++_30/compilerpoly) +- [译期能做些什么?一个完整的计算世界](./modern_C++_30/compilercompute) - [SFINAE:不是错误的替换失败是怎么回事?](./modern_C++_30/SFINAE) - [constexpr:一个常态的世界](./modern_C++_30/constexpr) diff --git a/modern_C++_30/compilercompute/IF.cpp b/modern_C++_30/compilercompute/IF.cpp new file mode 100644 index 0000000..a6c0682 --- /dev/null +++ b/modern_C++_30/compilercompute/IF.cpp @@ -0,0 +1,54 @@ +// +// Created by light on 19-12-28. +// + +#include + +using namespace std; + +// 使用template实现IF条件判断 + +template +struct IF; + + +template +struct IF { + typedef Then result; +}; + +template +struct IF { + typedef Else result; +}; + +// 判断奇数与偶数 +template +struct isEven { + static const auto RES = IF::result::value; +}; + +template +struct Add_ { + static const int value = nums1 + nums2; +}; + +template +struct Sub_ { + static const int value = nums1 - nums2; +}; + +// 加减 +template +struct addSub { + static const auto RES = IF, Sub_>::result::value; +}; + +int main() { + cout << isEven<10>::RES << endl; + cout << addSub::RES << endl; +} diff --git a/modern_C++_30/compilercompute/WhileLoop.cpp b/modern_C++_30/compilercompute/WhileLoop.cpp new file mode 100644 index 0000000..7bc556a --- /dev/null +++ b/modern_C++_30/compilercompute/WhileLoop.cpp @@ -0,0 +1,77 @@ +// +// Created by light on 20-1-5. +// + +#include + +using namespace std; + +// 使用template实现while循环 + +template +struct WhileLoop; + +template +struct WhileLoop { + typedef typename WhileLoop< + Body::cond_value, + typename Body::next_type>::type + type; +}; + +template +struct WhileLoop { + typedef + typename Body::res_type type; +}; + +template +struct While { + typedef typename WhileLoop::type type; +}; +template +using While_t = WhileLoop; + +namespace my { + template + struct integral_constant { + static const T value = v; + typedef T value_type; + typedef integral_constant type; + }; +} +template +struct SumLoop { + + // 循环的条件 + static const bool cond_value = + n != 0; + + // 循环后的结果 + static const int res_value = + result; + + // 循环时的状态 + typedef my::integral_constant< + int, res_value> + res_type; + + // 循环执行一次时的状态 + typedef SumLoop + next_type; +}; + +template +struct Sum { + typedef SumLoop<0, n> type; +}; + +template +using Sum_t = SumLoop<0, n>; + +int main() { + cout << While::type>::type::value << endl; + cout << While_t>::type::value << endl; + return 0; +} diff --git a/modern_C++_30/compilercompute/a.out b/modern_C++_30/compilercompute/a.out new file mode 100755 index 0000000..bb8bb17 Binary files /dev/null and b/modern_C++_30/compilercompute/a.out differ diff --git a/modern_C++_30/compilercompute/factorial.cpp b/modern_C++_30/compilercompute/factorial.cpp new file mode 100644 index 0000000..c3eff68 --- /dev/null +++ b/modern_C++_30/compilercompute/factorial.cpp @@ -0,0 +1,24 @@ +// +// Created by light on 19-12-28. +// + +#include + +using namespace std; + +template +struct factorial { + static_assert(n >= 0, "Arg must be non-negative"); + static const int value = n * factorial::value; +}; + +template<> +struct factorial<0> { + static const int value = 1; +}; + +int main() { + + printf("%d\n", factorial<-1>::value); + return 0; +} \ No newline at end of file diff --git a/modern_C++_30/compilercompute/fmap.cpp b/modern_C++_30/compilercompute/fmap.cpp new file mode 100644 index 0000000..c80043e --- /dev/null +++ b/modern_C++_30/compilercompute/fmap.cpp @@ -0,0 +1,39 @@ +// +// Created by light on 20-1-5. +// + +#include +#include + +using namespace std; + + +template< + template + class OutContainer = vector, + typename F, class R> +auto fmap(F &&f, R &&inputs) { + typedef decay_t result_type; + + OutContainer> result; + + for (auto &&item:inputs) { + result.push_back(f(item)); + } + return result; +} + +// 对每一个数进行加1操作 +int add_1(int x) { + return x + 1; +} + +int main() { + vector v{1, 2, 3, 4, 5}; + auto result = fmap(add_1, v); + + for (auto item:result) + cout << item << " "; + cout<