// // Created by light on 20-1-5. // #include using namespace std; // 使用template实现while循环 template struct WhileLoop; template struct WhileLoop { typedef typename WhileLoop::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; }; } // namespace my template struct SumLoop { // 循环的条件 static const bool cond_value = n != 0; // 循环后的结果 static const int res_value = result; // 循环时的状态 typedef my::integral_constant 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; }